diff --git a/components/table/demo/nopagination.md b/components/table/demo/nopagination.md index 545980e8e4..23e54f7e25 100644 --- a/components/table/demo/nopagination.md +++ b/components/table/demo/nopagination.md @@ -17,31 +17,31 @@ Set `pagination={false}`, then no data paging and pagination will be shown. import { Table } from 'antd'; const columns = [{ - title: '姓名', + title: 'Name', dataIndex: 'name', }, { - title: '年龄', + title: 'Age', dataIndex: 'age', }, { - title: '住址', + title: 'Address', dataIndex: 'address', }]; const data = [{ key: '1', - name: '胡彦斌', + name: 'John Brown', age: 32, - address: '西湖区湖底公园1号', + address: 'New York No. 1 Lake Park', }, { key: '2', - name: '胡彦祖', + name: 'Jim Green', age: 42, - address: '西湖区湖底公园1号', + address: 'London No. 1 Lake Park', }, { key: '3', - name: '李大嘴', + name: 'Joe Black', age: 32, - address: '西湖区湖底公园1号', + address: 'Sidney No. 1 Lake Park', }]; ReactDOM.render(