BeanFeed
BeanFeed
NNuxt
Created by BeanFeed on 11/4/2024 in #❓・help
Pagination page count not updating
Fixed my issue. Set page-count to 1
8 replies
NNuxt
Created by BeanFeed on 11/4/2024 in #❓・help
Pagination page count not updating
<script setup lang="js">
const page = ref(1)
const items = ref([1,2,3,4])
</script>

<template>
<div>
<UPagination v-model="page" :total="items.length"/>
</div>

</template>

<style scoped>

</style>
<script setup lang="js">
const page = ref(1)
const items = ref([1,2,3,4])
</script>

<template>
<div>
<UPagination v-model="page" :total="items.length"/>
</div>

</template>

<style scoped>

</style>
this doesn't work and this is almost the exact same as the website example
8 replies
NNuxt
Created by BeanFeed on 11/4/2024 in #❓・help
Pagination page count not updating
Kapa just rewrote what I already had. Nothing was fixed.
8 replies