Element ui 点击分页时保存勾选框


    
      
      
        
      
      区自选划小
      
    
    
    
    reserve-selection仅对 type=selection 的列有效,类型为 Boolean,为 true 则代表会保留之前数据的选项,需要配合 Table 的 clearSelection 方法使用
methods: {
    getRowKeys(row) {
      return row.Id
    },
    handleSelectionChange(arr){
      if(arr.length>0){
        this.multipleSelection = arr
      }
    }
}

 

你可能感兴趣的:(vue,分页时保留勾选框)