当我们设置 <el-table> 的 fixed 或 fixed='right' 属性后,会出现行高错位的情况。

解决办法:

在获取完 tableData 后,执行重新校准行高方法

this.$nextTick(() => {
	this.$refs.myTable.doLayout();
})