vant/src/pagination
木槿花开 7a6e78fbf9
feat(Sku): add disable-soldout-sku prop (#7759)
* feat(Sku): 售罄sku支持点击

* feat(Sku): add disable-soldout-sku prop

Co-authored-by: zhanglin_0715 <zhanglin_0715@youzan.com>
2020-12-17 14:27:32 +08:00
..
2020-10-01 17:16:25 +08:00

Pagination

Install

import Vue from 'vue';
import { Pagination } from 'vant';

Vue.use(Pagination);

Usage

Basic Usage

<van-pagination v-model="currentPage" :total-items="24" :items-per-page="5" />
export default {
  data() {
    return {
      currentPage: 1,
    };
  },
};

Simple mode

<van-pagination v-model="currentPage" :page-count="12" mode="simple" />

Show ellipses

<van-pagination
  v-model="currentPage"
  :total-items="125"
  :show-page-size="3"
  force-ellipses
/>

Custom Button

<van-pagination v-model="currentPage" :total-items="50" :show-page-size="5">
  <template #prev-text>
    <van-icon name="arrow-left" />
  </template>
  <template #next-text>
    <van-icon name="arrow" />
  </template>
  <template #page="{ text }">{{ text }}</template>
</van-pagination>

API

Props

Attribute Description Type Default
v-model Current page number number -
mode Mode, can be set to simple multi string multi
prev-text Previous text string Previous
next-text Next text string Next
total-items Total items number | string 0
items-per-page Item number per page number | string 10
page-count The total number of pages, if not set, will be calculated based on total-items and items-per-page number | string -
show-page-size Count of page size to show number | string 5
force-ellipses Whether to show ellipses boolean false

Events

Event Description Arguments
change Emitted when current page changed -

Slots

Name Description SlotProps
page v2.10.9 Custom pagination item { number: number, text: string, active: boolean }
prev-text v2.10.9 Custom prev text -
next-text v2.10.9 Custom next text -

Less Variables

How to use: Custom Theme.

Name Default Value Description
@pagination-height 40px -
@pagination-font-size @font-size-md -
@pagination-item-width 36px -
@pagination-item-default-color @blue -
@pagination-item-disabled-color @gray-7 -
@pagination-item-disabled-background-color @background-color -
@pagination-background-color @white -
@pagination-desc-color @gray-7 -
@pagination-disabled-opacity @disabled-opacity -