BeanFeed
BeanFeed
NNuxt
Created by BeanFeed on 1/22/2025 in #❓・help
Popover being covered by other components.
This issue is resolved. It was caused by the tailwind drop shadow. If anyone is able to explain why that is then please let me know.
7 replies
NNuxt
Created by BeanFeed on 1/22/2025 in #❓・help
Popover being covered by other components.
No description
7 replies
NNuxt
Created by BeanFeed on 1/22/2025 in #❓・help
Popover being covered by other components.
No description
7 replies
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