当前组件依赖bootstrap样式,使用前请先引用相关css。
`,props: {
pageNum: Number,pageSize: Number,totalItemCount: Number,},computed: {
pageTotal: function () {
return Math.ceil(this.totalItemCount / this.pageSize)
}
},methods: {
turnToPage: function (num) {
if (num > this.pageTotal || num <= 0) {
//toastr.error(`当前页码超出了范围。页码:${num}`,'错误')
return false
}
this.$emit('change',num)
}
}
})
props定义三个属性:
当前页码,当前页显示数量,总数量computed定义了一个计算方法:获取总数量/当前页显示数量,向上取整,默认取10个
methods定义了一个根据页码跳转方法:最终用于触发change事件,$emit用于抛出自定义事件,组件外可以捕获当前定义的change事件
html组件显示:
代码如下:
以上的值为自己传入的值
以上方法是自定义事件change的方法,你们可以自己去修改内容。
效果图
原文链接:https://www.f2er.com/vue/39938.html