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.
51 lines
755 B
51 lines
755 B
5 years ago
|
---
|
||
|
order: 31
|
||
|
title:
|
||
|
zh-CN: 响应式
|
||
|
en-US: Responsive
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
响应式配置列的展示。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Responsive columns.
|
||
|
|
||
|
```jsx
|
||
|
import { Table } from 'antd';
|
||
|
|
||
|
const columns = [
|
||
|
{
|
||
|
title: 'Name (all screens)',
|
||
|
dataIndex: 'name',
|
||
|
key: 'name',
|
||
|
render: text => <a>{text}</a>,
|
||
|
},
|
||
|
{
|
||
|
title: 'Age (medium screen or bigger)',
|
||
|
dataIndex: 'age',
|
||
|
key: 'age',
|
||
|
responsive: ['md'],
|
||
|
},
|
||
|
{
|
||
|
title: 'Address (large screen or bigger)',
|
||
|
dataIndex: 'address',
|
||
|
key: 'address',
|
||
|
responsive: ['lg'],
|
||
|
},
|
||
|
];
|
||
|
|
||
|
const data = [
|
||
|
{
|
||
|
key: '1',
|
||
|
name: 'John Brown',
|
||
|
age: 32,
|
||
|
address: 'New York No. 1 Lake Park',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
ReactDOM.render(<Table columns={columns} dataSource={data} />, mountNode);
|
||
|
```
|