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/custom-changer.vue

45 lines
983 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 3
title:
zh-CN: 自定义下拉选项
en-US: Custom dropdown options
---
## zh-CN
自定义下拉选项例如添加全部选项
## en-US
Customize dropdown options such as adding all options
</docs>
<template>
<a-pagination
v-model:current="current"
v-model:page-size="pageSizeRef"
:page-size-options="pageSizeOptions"
:total="total"
show-size-changer
@showSizeChange="onShowSizeChange"
>
<template #buildOptionText="props">
<span v-if="props.value !== '50'">{{ props.value }}/</span>
<span v-else></span>
</template>
</a-pagination>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
const pageSizeOptions = ref<string[]>(['10', '20', '30', '40', '50']);
const current = ref(1);
const pageSizeRef = ref(10);
const total = ref(50);
const onShowSizeChange = (current: number, pageSize: number) => {
console.log(current, pageSize);
pageSizeRef.value = pageSize;
};
</script>