码迷,mamicode.com
首页 > 其他好文 > 详细

element UI表格限制选中条数

时间:2020-11-21 12:26:25      阅读:7      评论:0      收藏:0      [点我收藏+]

标签:div   table   return   type   his   turn   col   style   选中   

表格中的selection栏

<el-table-column
          type="selection"
          width="55"
          :selectable="checkboxT"   //加上该方法
        ></el-table-column>

  

 checkboxT() {
    if (this.liveForm.lectures.length >= 10) {   //自定义数量
      return 0;
    } else {
      return 1;
    }
  }

 

element UI表格限制选中条数

标签:div   table   return   type   his   turn   col   style   选中   

原文地址:https://www.cnblogs.com/Jennyishere/p/13995437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!