1. 问题描述:el-table使用固定列时,使用keep-alive后页面切换导致该列错位。
2. 解决方法:使用el-table的doLayout方法对表格进行重新布局
activated() {
this.$nextTick(() => {
this.$refs.myTable.doLayout();
});
},
标签:el,错位,固定,使用,doLayout,table
From: https://www.cnblogs.com/lpkshuai/p/17027807.html