问题一: el-table 在 IE 下可能宽度不能 100%

  1. 方案一
.el-table__header {
width: 100% !important;
}
.el-table__body {
width: 100% !important;
}

问题二: el-table 在 IE 下可能看不见

  1. 方案一
.el-table {
-ms-flex: none !important;
flex: none !important;
height: max-content;
}