/*! For license information please see 902.61d9d82d.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["902"],{67206:function(t,n,s){"use strict";s.r(n);var a=s("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Pagination

\n

Intro

\n

When the amount of data is too much, use pagination to separate the data, and load only one page at a time.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Pagination } from 'vant';\n\nconst app = createApp();\napp.use(Pagination);\n
\n

Usage

\n

Basic Usage

\n
<van-pagination v-model="currentPage" :total-items="24" :items-per-page="5" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const currentPage = ref(1);\n    return { currentPage };\n  },\n};\n
\n

Simple mode

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

Show ellipses

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

Custom Button

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

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-modelCurrent page numbernumber-
modeMode, can be set to simple multistringmulti
prev-textPrevious textstringPrevious
next-textNext textstringNext
total-itemsTotal itemsnumber | string0
items-per-pageItem number per pagenumber | string10
page-countThe total number of pages, if not set, will be calculated based on total-items and items-per-pagenumber | string-
show-page-sizeCount of page size to shownumber | string5
force-ellipsesWhether to show ellipsesbooleanfalse
show-prev-button v4.2.1Whether to show prev buttonbooleantrue
show-next-button v4.2.1Whether to show next buttonbooleantrue
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
changeEmitted when current page changed-
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionSlotProps
pageCustom pagination item{ number: number, text: string, active: boolean }
prev-textCustom prev text-
next-textCustom next text-
\n

Types

\n

The component exports the following type definitions:

\n
import type { PaginationMode, PaginationProps } from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-pagination-height40px-
--van-pagination-font-sizevar(--van-font-size-md)-
--van-pagination-item-width36px-
--van-pagination-item-default-colorvar(--van-primary-color)-
--van-pagination-item-disabled-colorvar(--van-gray-7)-
--van-pagination-item-disabled-backgroundvar(--van-background)-
--van-pagination-backgroundvar(--van-background-2)-
--van-pagination-desc-colorvar(--van-gray-7)-
--van-pagination-disabled-opacityvar(--van-disabled-opacity)-
\n
'},null,8,e))}}}]);