<script setup lang="js">const page = ref(1)const items = ref([1,2,3,4])</script><template> <div> <UPagination v-model="page" :total="items.length"/> </div></template><style scoped></style>