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

35 lines
531 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
2020-11-08 15:04:02 +08:00
By using `push` and `pull` class you can easily change column order.
```tsx
2022-05-21 22:14:15 +08:00
import { Col, Row } from 'antd';
import React from 'react';
2015-10-27 23:52:17 +08:00
const App: React.FC = () => (
<Row>
<Col span={18} push={6}>
col-18 col-push-6
</Col>
<Col span={6} pull={18}>
col-6 col-pull-18
</Col>
</Row>
2015-10-27 23:52:17 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```