el-table列表最后一行展示不全解决方法

76 阅读1分钟

el-tableactivated页面缓存导致切换页面、切换面包屑、或页面返回列表最后一行展示不全解决方法:

::v-deep .el-table__fixed {
    height: 100% !important;
    z-index: 50;
  }
  ::v-deep .el-table__body-wrapper {
    overflow: scroll !important;
  }
  ::v-deep .el-table__fixed:before {
    width: 0;
    height: 0;
  }