一、使用 doLayout 方式(官方推荐)
<el-table
id="excel"
ref="planTableRef"
:row-class-name="tableRowClassName"
:data="plans"
class="pointer"
height="90%"
:span-method="arraySpanMethod"
style="width: 100%"
>
watch:{
"plans":{
handler(){
this.$nextTick(() =>{
this.$refs.planTableRef.doLayout()
});
},
deep: true
}
},
监听 data 的数据,然后调用这个方法即可