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

33 lines
483 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-11-05 15:46:50 +08:00
title:
zh-CN: 栅格排序
en-US: Grid sort
2016-03-31 09:40:55 +08:00
---
2015-06-09 21:20:15 +08:00
## zh-CN
2015-06-15 17:46:42 +08:00
列排序。
2015-06-09 21:20:15 +08:00
2016-02-25 14:15:37 +08:00
通过使用 `push``pull` 类就可以很容易的改变列column的顺序。
2015-06-09 21:20:15 +08:00
## en-US
2019-05-07 14:57:32 +08:00
By using `push` and`pull` class you can easily change column order.
2019-05-07 14:57:32 +08:00
```jsx
import { Row, Col } from 'antd';
2015-10-27 23:52:17 +08:00
ReactDOM.render(
<Row>
<Col span={18} push={6}>
col-18 col-push-6
</Col>
<Col span={6} pull={18}>
col-6 col-pull-18
</Col>
</Row>,
2019-05-07 14:57:32 +08:00
mountNode,
2015-10-27 23:52:17 +08:00
);
2019-05-07 14:57:32 +08:00
```