Files
panel/resources/js/views/demos/components/pagination/DemoPaginationCircle.vue
2025-08-04 16:33:07 +03:30

12 lines
159 B
Vue

<script setup>
const currentPage = ref(1)
</script>
<template>
<VPagination
v-model="currentPage"
:length="5"
rounded="circle"
/>
</template>