组件库文档 tmui.design
分页 Pagination
分页按钮组
🌶️ 示例
查看模拟效果+
示例模板
vue
<template>
<tm-app>
<tm-sheet>
<tm-text :fontSize="24" _class="text-weight-b" label="基础属性,更多玩法请前往文档。"></tm-text>
</tm-sheet>
<tm-sheet :padding="[12, 12]" :margin="[0, 0]">
<tm-pagination v-model:current="abv" color="primary" :total="100"></tm-pagination>
</tm-sheet>
<tm-sheet :padding="[12, 12]" :margin="[0, 16]">
<tm-pagination simple :total="100"></tm-pagination>
</tm-sheet>
</tm-app>
</template>
<script lang="ts" setup>
import { ref, getCurrentInstance } from 'vue'
import { onShow, onLoad } from '@dcloudio/uni-app'
import tmApp from '@/tmui/components/tm-app/tm-app.vue'
import tmSheet from '@/tmui/components/tm-sheet/tm-sheet.vue'
import tmText from '@/tmui/components/tm-text/tm-text.vue'
import tmPagination from '@/tmui/components/tm-pagination/tm-pagination.vue'
const abv = ref(1)
setTimeout(function () {
abv.value = 4
}, 3000)
</script>
🌶️ 兼容性
APP-VUE | APP-NVUE | 小程序 | WEB/H5 | VUE3/TS |
---|---|---|---|---|
✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
🌱 参数
本组件含有公共属性 公共属性
参数名 | 类型 | 默认值 | 描述 |
---|---|---|---|
followTheme | [Boolean,String] | false | |
total | Number | 0 | 总数量 |
current | Number | 1 | 当前页码(请注意可以使用v-model:current来实现双向绑定的改变) |
defaultCurrent | Number | 1 | 默认页码 |
pageSize | Number | 10, | 分页数量 |
disabled | Boolean | false, | 是否禁用 |
simple | Boolean | false, | 是否使用简洁模式 |
btnSize | Number | 5 | 按钮数量 |
btnSizeNum | Number | 1 | 默认左右显示的按钮数量,出现三个"..." |
color | String | 'primary' | |
btnColor | String | 'white' | |
followDark | [Boolean,String] | true | |
dark | [Boolean,String] | false | |
round | [Number,String] | 3 | 圆角0-25,单位rpx |
shadow | [Number,String] | 2 | 投影,0-25 |
text | [Boolean,String] | false | |
linear | [String] | 'bottom' | left:右->左,right:左->右。top:下->上,bottom:上->下。 |
linearDeep | [String] | 'light' | light,dark,accent亮系渐变和深色渐变。 |
🌹 事件
事件名 | 参数 | 返回数据 | 描述 |
---|---|---|---|
update:current | value | ||
change | value |
🌽 slot插槽
无
🥗 ref方法
无
方法名 | 参数 | 返回值 | 描述 |
---|