element-ui table多选CheckBox参数解析

前提

现在需要对表格中的数据进行判断,判断是否可选。

上代码

添加:selectable=“IsCheck”

          

methods:{}添加

IsCheck(row, index) {        
if (!row.IsCheck) {          
return false        
} else {          
return true        
}
},

你可能感兴趣的:(vue-web)