elementUI之el-table左固定列把底部滚动条覆盖导致拖动无效
解决办法:

代码:
<style lang="scss"> .el-table { .el-table__fixed { height:auto !important; // 此处的important表示优先于element.style bottom:17px; // 改为自动高度后,设置与父容器的底部距离,则高度会动态改变 } } </style>
解决办法:

代码:
<style lang="scss"> .el-table { .el-table__fixed { height:auto !important; // 此处的important表示优先于element.style bottom:17px; // 改为自动高度后,设置与父容器的底部距离,则高度会动态改变 } } </style>