el-table 使用fixed 固定列 但是固定列不会随着Y轴滑动


::v-deep {         .el-table__body-wrapper {           overflow-y: auto;           height: calc(100vh - 365px); // 表格固定了高度         }         .el-table__fixed-body-wrapper {           overflow-y: auto; // fixed的列也要超出滚动           height: calc(100vh - 375px);  // 出现滚动条需要比表格短10px         }       }
vue