You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/pagination/demo/more.vue

26 lines
288 B

<docs>
---
order: 1
title:
zh-CN: 更多
en-US: More
---
## zh-CN
更多分页
## en-US
More pages.
</docs>
<template>
<a-pagination v-model:current="current" :total="500" />
</template>
<script lang="ts" setup>
import { ref } from 'vue';
const current = ref(6);
</script>