ECharts图表在切换时缩成一团

403 阅读1分钟

今天在使用ECharts时发现使用v-show切换时图表会缩成一团

正常

image.png

错误

image.png

解决方案
this.$nextTick(()=>{
    this.initCharts(); //调用 echarts 图表方法
})