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

12 lines
193 B
Vue
Raw Permalink 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"
:total-visible="$vuetify.display.mdAndUp ? 7 : 3"
/>
</template>