vue根据表格分页,前端实现方法

html:

      
        
          
        
      


          
          

js:

data() {
    return {
      pagesize: 15,
      curPage: 1,
      tableData: [
        {
          date: "2016-05-02",
          name: "王小虎",
          address: "上海市普陀区金沙江路 1518 弄"
        }
      ]
    };
  },

完成

你可能感兴趣的:(vue,elementUI)