ant-design/components/list/demo/grid.md

46 lines
672 B
Markdown
Raw Normal View History

2017-08-14 11:08:19 +08:00
---
order: 4
2017-08-14 11:08:19 +08:00
title:
2018-04-13 14:59:22 +08:00
zh-CN: 栅格列表
2017-08-14 11:08:19 +08:00
en-US: Grid
---
## zh-CN
可以通过设置 `List``grid` 属性来实现栅格列表,`column` 可设置期望显示的列数。
2017-08-14 11:08:19 +08:00
## en-US
Creating a grid list by setting the `grid` property of List
2017-08-14 11:08:19 +08:00
````jsx
import { List, Card } from 'antd';
const data = [
{
title: 'Title 1',
},
{
title: 'Title 2',
},
{
title: 'Title 3',
},
{
title: 'Title 4',
},
];
2017-08-14 11:08:19 +08:00
ReactDOM.render(
<List
grid={{ gutter: 16, column: 4 }}
dataSource={data}
renderItem={item => (
<List.Item>
<Card title={item.title}>Card content</Card>
</List.Item>
)}
2018-06-27 15:55:04 +08:00
/>,
mountNode);
2017-08-14 11:08:19 +08:00
````