Vue + Element table中selection复选框禁用某一行

Vue + Element table中selection复选框禁用某一行

guohongyanghy 2019-03-08 11:52:22 8109 已收藏 4

分类专栏: vue 前端 Element

版权

在禁用的函数中使用条件可以禁用多行,不需要写循环

Vue + Element table中selection复选框禁用某一行_第1张图片

 
        
 
 //复选框
      checkboxT(row, rowIndex){
        if(rowIndex==0){
//      if(row.lie =='1'){
          return false;//禁用
        }else{
          return true;//不禁用
        }
      },

 

你可能感兴趣的:(element,vue)