让前端飞饥人谷技术博客

element ui table 中的selection实现单选

2018-11-22  本文已影响1人  小7丁

这里用的方法是css ,让他display: none:

thead {
    .el-table-column--selection {
      .cell {
        display: none;
      }
    }
  }
chooseInstance (val) {
      if (val.length > 1) {
        this.$refs.Table.clearSelection()
        this.$refs.Table.toggleRowSelection(val.pop())
      } else {
        }
    },
this.$refs.Table.toggleRowSelection(val)
上一篇下一篇

猜你喜欢

热点阅读