mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
17 lines
270 B
Vue
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>
|