mirror of
https://github.com/youzan/vant.git
synced 2026-01-16 07:02:16 +08:00
Pagination
Install
import { createApp } from 'vue';
import { Pagination } from 'vant';
const app = createApp();
app.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 | Triggered on page change | - |
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 | - |