前端 - 解决el-table 无限拉伸问题
解决el-table 无限拉伸问题
设置表格的max-height
<el-table border :data="tableData" max-height="500px">
上一步设置成功后,在浏览器缩放条件下仍然存在无限拉伸的问题,这时需要做自适应
::v-deep .el-table{ width: 100%; .el-table__header-wrapper table,.el-table__body-wrapper table{ width: 100% !important; } .el-table__body, .el-table__footer, .el-table__header{ table-layout: auto; } }