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

61 lines
857 B
Markdown
Raw Normal View History

---
order: 5
title:
2019-04-20 06:36:12 +08:00
zh-CN: 响应式的栅格列表
en-US: Responsive grid list
---
## zh-CN
响应式的栅格列表。尺寸与 [Layout Grid](/components/grid/#Col) 保持一致。
## en-US
2020-05-04 13:12:42 +08:00
Responsive grid list. The size property the is as same as [Layout Grid](/components/grid/#Col).
2019-05-07 14:57:32 +08:00
```jsx
import { List, Card } from 'antd';
const data = [
{
title: 'Title 1',
},
{
title: 'Title 2',
},
{
title: 'Title 3',
},
{
title: 'Title 4',
},
{
title: 'Title 5',
},
{
title: 'Title 6',
},
];
ReactDOM.render(
<List
2018-11-28 15:00:03 +08:00
grid={{
2019-05-07 14:57:32 +08:00
gutter: 16,
xs: 1,
sm: 2,
md: 4,
lg: 4,
xl: 6,
xxl: 3,
2018-11-28 15:00:03 +08:00
}}
dataSource={data}
renderItem={item => (
<List.Item>
<Card title={item.title}>Card content</Card>
</List.Item>
)}
2018-06-27 15:55:04 +08:00
/>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```