This commit is contained in:
2025-05-24 01:49:48 +09:00
commit 62abbcf4eb
2376 changed files with 325522 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
### VFlexPagination
Vuero provides a custom pagination component called `<VFlexPagination />`.
Check the markup for more details about usage.
<!--code-->
```vue
<script setup lang="ts">
const route = useRoute()
const currentPage = computed(() => {
try {
return Number.parseInt(route.query.page as string) || 1
}
catch {
// do nothing
}
return 1
})
</script>
<template>
<VFlexPagination
:item-per-page="8"
:total-items="512"
:current-page="currentPage"
:max-links-displayed="5"
/>
</template>
```
<!--/code-->