elementUi tabs默认样式选中不显示下划线问题

发布时间 2024-01-03 11:12:05作者: 小七来了
::v-deep .el-tabs__header {
    padding: 10px 20px 0px 20px;
  }
  ::v-deep .el-tabs__item {
    width: 140px;
    text-align: center;
    padding: 0px;
  }
  ::v-deep .el-tabs__nav {
    z-index: 2;  // 解决选中下划线没有显示问题
  }
  ::v-deep .el-tabs__item:focus.is-active.is-focus:not(:active) {
    box-shadow: none;
  }

  最终效果