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.
ant-design-vue/components/grid/demo/sort.md

427 B

#### 栅格排序 列排序。 通过使用 `push` 和 `pull` 类就可以很容易的改变列column的顺序。 #### Grid sort By using `push` and` pull` class you can easily change column order.
<template>
  <div>
    <a-row>
      <a-col :span="18" :push="6">col-18 col-push-6</a-col>
      <a-col :span="6" :pull="18">col-6 col-pull-18</a-col>
    </a-row>
  </div>
</template>