elementUI渲染错乱
解决方案
- 给表格添加 ref
- 最后在变更数据后执行,以下代码:
this.$nextTick(() => {
this.$refs.policeTable.doLayout();
});
- 如果解决不了你的问题,而且**$refs**后的 name 会 undefined 报错
- 那你就要一层层的找到你添加ref 的对象
- 我的解决代码:
this.$children[7].$children[0].$children[4].$refs.policeTable.doLayout();
- 以上 children 就是太多组件了。一步步找。