elemenui表格组件表头复选框添加全选二字

<el-table-column type="selection" width="70px" align="center" label-class-name="DisabledSelection"></el-table-column>
      
.el-table /deep/ .DisabledSelection.cell .el-checkbox__inner{
    margin-left: -30px;
    position:relative;
  }
  .el-table /deep/ .DisabledSelection.cell:before{
    content:"全选";
    position:absolute;
    right:11px;
  }

原文地址:https://www.cnblogs.com/xhrr/p/15761930.html