ant-design/components/table/demo/size.md

44 lines
833 B
Markdown
Raw Normal View History

2015-11-26 14:44:28 +08:00
# 中小型列表
2015-07-12 18:14:17 +08:00
- order: 9
2015-07-12 18:14:17 +08:00
2015-11-26 14:44:28 +08:00
紧凑型的列表, 中型列表用于需要数据紧凑展示的情况,小型列表只用于对话框内。
2015-07-12 18:14:17 +08:00
---
````jsx
import { Table } from 'antd';
const columns = [{
2015-07-12 18:14:17 +08:00
title: '姓名',
dataIndex: 'name'
}, {
title: '年龄',
dataIndex: 'age'
}, {
title: '住址',
dataIndex: 'address'
}];
const data = [{
2015-08-28 15:22:09 +08:00
key: '1',
2015-07-12 18:14:17 +08:00
name: '胡彦斌',
age: 32,
address: '西湖区湖底公园1号'
}, {
2015-08-28 15:22:09 +08:00
key: '2',
2015-07-12 18:14:17 +08:00
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号'
}, {
2015-08-28 15:22:09 +08:00
key: '3',
2015-07-12 18:14:17 +08:00
name: '李大嘴',
age: 32,
address: '西湖区湖底公园1号'
}];
2015-11-26 14:44:28 +08:00
ReactDOM.render(<div>
<Table columns={columns} dataSource={data} size="middle" />
<Table columns={columns} dataSource={data} size="small" />
</div>, document.getElementById('components-table-demo-size'));
2015-07-12 18:14:17 +08:00
````