Files
panel/resources/js/views/demos/components/pagination/DemoPaginationLength.vue

11 lines
139 B
Vue
Raw Normal View History

2025-08-04 16:33:07 +03:30
<script setup>
const currentPage = ref(1)
</script>
<template>
<VPagination
v-model="currentPage"
:length="15"
/>
</template>