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

11 lines
139 B
Vue

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