fix(Pagination): page numbers not clickable (#624)

This commit is contained in:
hxp971130
2023-09-08 18:27:08 +08:00
committed by GitHub
parent 1a7eb27cad
commit c1e0654417

View File

@@ -14,7 +14,7 @@
<UButton
v-for="(page, index) of displayedPages"
:key="index"
:key="`${page}-${index}`"
:size="size"
:label="`${page}`"
v-bind="page === currentPage ? { ...ui.default.activeButton, ...activeButton } : { ...ui.default.inactiveButton, ...inactiveButton }"