mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-02-01 20:57:57 +01:00
fix(Pagination): page numbers not clickable (#624)
This commit is contained in:
@@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
<UButton
|
<UButton
|
||||||
v-for="(page, index) of displayedPages"
|
v-for="(page, index) of displayedPages"
|
||||||
:key="index"
|
:key="`${page}-${index}`"
|
||||||
:size="size"
|
:size="size"
|
||||||
:label="`${page}`"
|
:label="`${page}`"
|
||||||
v-bind="page === currentPage ? { ...ui.default.activeButton, ...activeButton } : { ...ui.default.inactiveButton, ...inactiveButton }"
|
v-bind="page === currentPage ? { ...ui.default.activeButton, ...activeButton } : { ...ui.default.inactiveButton, ...inactiveButton }"
|
||||||
|
|||||||
Reference in New Issue
Block a user