ant-design/components/grid/demo/sort.md
MadCcc 6776bb8916
docs: demo support react18 (#34843)
* docs: update demo

* chore: add script

* test: fix demo test

* docs: convert demos

* chore: move script

* test: remove react-dom import

* chore: update deps

* docs: update riddle js

* test: fix image test

* docs: fix riddle demo
2022-04-03 23:27:45 +08:00

476 B
Raw Blame History

order title
3
zh-CN en-US
栅格排序 Grid sort

zh-CN

列排序。

通过使用 pushpull 类就可以很容易的改变列column的顺序。

en-US

By using push and pull class you can easily change column order.

import { Row, Col } from 'antd';

export default () => (
  <Row>
    <Col span={18} push={6}>
      col-18 col-push-6
    </Col>
    <Col span={6} pull={18}>
      col-6 col-pull-18
    </Col>
  </Row>
);