使用echarts插件,多次加载出现There is a chart instance already initialized on the dom,报的警告,看不下去啦

解决方法:

在data()定义全局变量

data(){
  return{
    chart: null
  }
}

在使用插件方法中最前面添加

if (this.chart != null && this.chart != "" && this.chart != undefined) {
  this.chart.dispose();
}

然后在实例化

this.chart  = echarts.init(document.getElementById(‘#id‘));

使用echarts插件,多次加载出现There is a chart instance already initialized on the dom,报的警告,看不下去啦

上一篇:144. 二叉树的前序遍历


下一篇:使用visual studio生成事件,生成固定文件夹和dll位置