Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<script setup>
const xSmallPagination = ref(1)
const smallPagination = ref(2)
const largePagination = ref(3)
</script>
<template>
<div class="d-flex flex-column gap-6 px-4">
<VPagination
v-model="xSmallPagination"
:length="7"
size="small"
/>
<VPagination
v-model="smallPagination"
:length="7"
/>
<VPagination
v-model="largePagination"
:length="7"
:total-visible="$vuetify.display.xs ? 1 : 7"
size="large"
/>
</div>
</template>