Files
ui/docs/app/components/content/examples/pagination/PaginationLinksExample.vue
2024-09-26 17:00:54 +02:00

17 lines
270 B
Vue

<script setup lang="ts">
const page = ref(5)
function to(page: number) {
return {
query: {
page
},
hash: '#with-links'
}
}
</script>
<template>
<UPagination v-model:page="page" :total="100" :to="to" :sibling-count="1" show-edges />
</template>