purityselect_admin/resources/js/views/demos/components/pagination/DemoPaginationLength.vue
2024-10-25 19:58:19 +05:00

11 lines
139 B
Vue

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