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

12 lines
161 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"
variant="outlined"
:length="5"
/>
</template>