vue 去除el-table表头的全选框

57 阅读1分钟
<style scoped lang="scss">
//去掉表头多选框
::v-deep .el-table__header-wrapper .el-checkbox {
  display: none;
}
</style>