Vue + Element table中selection复选框禁用某一行
guohongyanghy 2019-03-08 11:52:22 8109 已收藏 4
版权
在禁用的函数中使用条件可以禁用多行,不需要写循环
<el-table-column
type="selection"
:selectable='checkboxT'
width="28">
</el-table-column>
//复选框
checkboxT(row, rowIndex){
if(rowIndex==0){
// if(row.lie =='1'){
return false;//禁用
}else{
return true;//不禁用
}
},