解决方法:<el-table-column type="selection" :selectable='checkboxSelect' width="120"></el-table-column>

 checkboxSelect (row, rowIndex) {
        if (rowIndex == 0) {
          return false // 禁用
        }else{
          return true // 不禁用
        }
      }

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2021-06-21
  • 2021-10-06
  • 2021-07-24
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-12
  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案