<el-table-
column
type="selection"
:selectable='checkboxT'
disabled='true'
width="55">
</el-table-column>
methods:{
checkboxT(row,index){
if(row.status == 0){
return 1
}else {
return 0
}
}
}
即可实现不可选中效果
转载于:https://www.cnblogs.com/xwanlin/p/10608378.html