element-ui表格中复选框只能选中一个(亲测有效,拿过来直接用)

 示例:

 element-ui表格中复选框只能选中一个(亲测有效,拿过来直接用)_第1张图片element-ui表格中复选框只能选中一个(亲测有效,拿过来直接用)_第2张图片

html:

 

methods:

select(selection, row) {
      if (selection.length > 1) {
        let del_row = selection.shift()
        this.$refs.multipleTable.toggleRowSelection(del_row, false)
      }
    },
selectAll(selection){
      if (selection.length > 1) {
        selection.length = 1
      }
    }

 

你可能感兴趣的:(element-ui表格中复选框只能选中一个(亲测有效,拿过来直接用))