mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
9 lines
179 B
Vue
9 lines
179 B
Vue
<script setup lang="ts">
|
|
const page = ref(1)
|
|
const items = ref(Array(55))
|
|
</script>
|
|
|
|
<template>
|
|
<UPagination v-model="page" :page-count="5" :total="items.length" />
|
|
</template>
|