记录一个报错
此报错为 echarts 报错,错误原因:将挂载函数写在 created 中了,只需将函数 移至 mounted 中就好
created() {
// this.initCharts();
},
mounted() {
this.initCharts();
},
记录一个报错
此报错为 echarts 报错,错误原因:将挂载函数写在 created 中了,只需将函数 移至 mounted 中就好
created() {
// this.initCharts();
},
mounted() {
this.initCharts();
},