vueComponent / ant-design-vue

🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜

Home Page:https://antdv.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

分页改变每页显示条目数。不显示

liuyan68 opened this issue · comments

  • I have searched the issues of this repository and believe that this is not a duplicate.

Version

4.2.1

Environment

vue3 vite

Reproduction link

https://antdv.com/components/pagination-cn

Steps to reproduce

分页改变每页显示条目数。不显示

What is expected?

分页改变每页显示条目数。不显示

What is actually happening?

分页改变每页显示条目数。不显示

官网的demo没有问题呀~
image

能给一下复现的代码吗?

能给一下复现的代码吗?

image

<template>
  <div style="width:100%;height:100%">
    <a-pagination v-model:current="current1" show-quick-jumper :total="500" />
  </div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
const current1 = ref(1)
</script>

无法复现你的问题,能在基础上再添加一些信息吗?