13 lines
182 B
Vue
13 lines
182 B
Vue
|
|
<script setup>
|
||
|
|
const currentPage = ref(1)
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<VPagination
|
||
|
|
v-model="currentPage"
|
||
|
|
variant="outlined"
|
||
|
|
:length="5"
|
||
|
|
rounded="circle"
|
||
|
|
/>
|
||
|
|
</template>
|