ant-design-vue/antdv-demo/docs/pagination/demo/total.md

552 B

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