vue+echarts tab switch chart update chart size

Solve the problem that when the tab switches the chart, the chart will shrink together

Add the following code to the tab switching time function

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

Guess you like

Origin blog.csdn.net/z_jing0927/article/details/131452456