<template>
<h-pag-v1 v-model="h_pag"></h-pag-v1>
</template>
<script setup>
const h_pag = {
// 当前第几页
page: 1,
// 每页展示多少
per_page: 20,
// 每页展示多少下拉框
page_size: [20, 50, 100],
// 总共多少条
total: 200,
// 总共多少页
total_page: 10,
// 页码输入框
input_page: ''
}
</script>