Skip to content

Pagination

Demo

Pagination 跨端示例与演示

All orders15 orders
#1042Shipped
¥259
#1041Completed
¥178
#1040Pending payment
¥101

Page 2 of 5

Basic Usage

vue
<script setup lang="ts">
import { VPagination } from '@varo-ui/h5'
import { shallowRef } from 'vue'

const page = shallowRef(2)
</script>

<template>
  <VPagination v-model="page" :page-count="5" />
  <VPagination v-model="page" :page-count="5" mode="simple" />
</template>

Props

PropTypeDefaultDescription
modelValuenumber1Current page
pageCountnumber1Total page count
mode'multi' | 'simple''multi'Pagination mode
prevTextstring'上一页'Previous button text
nextTextstring'下一页'Next button text
ariaLabelstring'分页'Accessible name for pagination navigation
itemAriaLabelstring'第 {page} 页,共 {total} 页'Page label template with {page} and {total}

Events

EventPayloadDescription
update:modelValuenumberPage changed
changenumberPage changed