element 中 Table分页回显勾选数据

配合row-key -->行数据的 Key,用来优化 Table 的渲染;在使用 reserve-selection 功能的情况下来进行回显
一 html

 
      
       
      
      
       
      
    

二 return

 return {
      getRowKeys (row) {
        return row.id;
      },
      dataList: []
    };

三,methods

    changeFun_good (val) {
      this.chooseData = val;
    },

你可能感兴趣的:(element)