vue element-ui 分页组件封装



调用

// 分页
import pages from 'components/common/pages/pages'

components: {
  pages
},

handleSizeChangeFun(v) {
  this.pageSize = v;
  this._enterpriseList(); //更新列表
},

handleCurrentChangeFun(v) { //页面点击
  this.pageNum = v; //当前页
  this._enterpriseList(); //更新列表
}

转载于:https://www.cnblogs.com/Byme/p/10095144.html

你可能感兴趣的:(vue element-ui 分页组件封装)