element table 合并单元格后表头和单元格线对不齐
解决方式
table 提供了 doLayout
方法,对 Table 进行重新布局。当 Table 或其祖先元素由隐藏切换为显示时,可能需要调用此方法
html
<el-table :resizable="false" ref="doLayoutTable"></el-table>
js
//js
this.$nextTick(() => {
if (this.$refs.doLayoutTable&& this.$refs.doLayoutTable.doLayout) {
this.$refs.doLayoutTable.doLayout();
}
})