Introducing echarts, into vue and adding click events, what does this warning mean?

Click the map point mark to display the information window, click the view chart in the information window to pop up the echarts chart pop-up window, as if the page has been switched many times or clicked many times, there is a warning and then it collapses.

 //
 AMap.event.addListener(marker,"click",function(e){
          console.log(e,this)
          infoWindow.setContent(e.target.content);
          infoWindow.open(that.map, e.target.getPosition());
          
//echarts
 document.getElementsByClassName("showPic")[0].addEventListener("click",function(){
              that.showSS = true
              that.$nextTick(()=>{
                that.drawLine()
              })
          })
          

clipboard.png

clipboard.png

I don"t understand


is due to an ECharts memory leak. When you close the echarts chart pop-up window, empty the legend data
about ECharts memory leaks
vue + Echarts fill in holes (large amount of Echarts data, resulting in browser stutters)

clearEchartData () {
    this.chart.clear()
}
Menu