vue+echarts tab切换图表 更新图表大小

解决在tab切换图表的时候,图表会缩在一起

在tab切换时间函数加上如下代码

  this.$nextTick(function () {
        var myEvent = new Event('resize')
        window.dispatchEvent(myEvent)
      })

猜你喜欢

转载自blog.csdn.net/z_jing0927/article/details/131452456