# Pagination ### Intro When the amount of data is too much, use pagination to separate the data, and load only one page at a time. ### Install Register component globally via `app.use`, refer to [Component Registration](#/en-US/advanced-usage#zu-jian-zhu-ce) for more registration ways. ```js import { createApp } from 'vue'; import { Pagination } from 'vant'; const app = createApp(); app.use(Pagination); ``` ## Usage ### Basic Usage ```html ``` ```js import { ref } from 'vue'; export default { setup() { const currentPage = ref(1); return { currentPage }; }, }; ``` ### Simple mode ```html ``` ### Show ellipses ```html ``` ### Custom Button ```html ``` ## 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 | Custom pagination item | _{ number: number, text: string, active: boolean }_ | | prev-text | Custom prev text | `-` | | next-text | Custom next text | `-` | ### Less Variables How to use: [Custom Theme](#/en-US/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` | - |