You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
671 B

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