vue的pc端项目+element实现分页效果
效果图:
直接使用element操作很简单,记录一下要点:
根据ele提供的api修改data
v-for="(i,s) in dataView.slice((currentPage-1)*PageSize,currentPage*PageSize)"
如果数据在其他功能需要被修改,可以修改并储存data
this.dataView = data //经筛选的页面展示数据
this.total = this.dataView.length