mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-20 15:01:46 +01:00
8 lines
160 B
Vue
8 lines
160 B
Vue
<script setup lang="ts">
|
|
const page = ref(5)
|
|
</script>
|
|
|
|
<template>
|
|
<UPagination v-model:page="page" :total="100" :sibling-count="1" show-edges />
|
|
</template>
|