hgh_admin/resources/js/views/demos/components/pagination/DemoPaginationBasic.vue
2024-05-29 22:34:28 +05:00

11 lines
138 B
Vue

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