ant-design-vue/components/pagination/demo/total.md
2018-03-10 22:39:12 +08:00

549 B

#### 总数 通过设置 `showTotal` 展示总共有多少数据。 #### Total number You can show the total number of data by setting `showTotal`.
<template>
  <div>
    <a-pagination
      :total="85"
      :showTotal="total => `Total ${total} items`"
      :pageSize="20"
      :defaultCurrent="1"
    />
    <br />
    <a-pagination
      :total="85"
      :showTotal="(total, range) => `${range[0]}-${range[1]} of ${total} items`"
      :pageSize="20"
      :defaultCurrent="1"
    />
  </div>
</template>