12 lines
193 B
Vue
12 lines
193 B
Vue
|
|
<script setup>
|
||
|
|
const currentPage = ref(1)
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<VPagination
|
||
|
|
v-model="currentPage"
|
||
|
|
:length="15"
|
||
|
|
:total-visible="$vuetify.display.mdAndUp ? 7 : 3"
|
||
|
|
/>
|
||
|
|
</template>
|