Element UI table 表頭錯位
方法一
在app.vue中添加
.el-table--border th.gutter:last-of-type {
display: block!important;
width: 17px!important;
}
方法二
在el-table組件掛載一個ref="configurationTable"
,然后在每次請求數據成功后動一動表格的默認寬度
this.$refs.configurationTable.$el.style.width = '99.99%'
https://www.jianshu.com/p/c18e6f911b2d