修改el-table表头样式

 

<style lang="scss" scoped>
::v-deep .el-table {
  .el-table__header-wrapper, .el-table__fixed-header-wrapper {
    th {
      word-break: break-word;
      background-color: #f8f8f9;
      color: #515a6e;
      height: 40px;
      font-size: 13px;
    }
  }
}
</style>

猜你喜欢

转载自blog.csdn.net/m0_74149462/article/details/134716270