美文网首页
iview table组件实现单击行选中

iview table组件实现单击行选中

作者: Bior | 来源:发表于2020-04-02 22:56 被阅读0次

    问题:
    iview的table组件在勾选模式下,只能点击勾选框勾选,无法实现单击行勾选,比较麻烦
    解决方法:

    // 表格中添加on-row-click事件.并触发rowClick函数
     <i-table ref="table" stripe :columns="tableColumns" :data="tableData"  @on-row-click="rowClick" @on-selection-change="tableSelect"></i-table>
    
    rowClick (data, index) {
          this.$refs.table.toggleSelect(index);
        }
    

    相关文章

      网友评论

          本文标题:iview table组件实现单击行选中

          本文链接:https://www.haomeiwen.com/subject/kprqphtx.html