[Vue warn]: Error in mounted hook: “TypeError: Cannot read property ‘getAttribute’ of null”

vue 中dialog中嵌套图表问题

今天遇到这个错误是在使用vue 弹出框dialog中使用echarts图表,出现该错误的原因是Echarts的图形容器还未生成就对其进行了初始化所造成的,解决方法是如下:

methods: {	
	initChart() {
	this.chart = this.$echarts.init(this.$refs.ygjwgdlqx,'macarons');
	this.chart.setOption(this.option)
	},	
},
mounted() {
		this.$nextTick(function () {
		this.initChart();
	}); 	
},
//只需要在你的方法外嵌套上
this.$nextTick(function (){

});

感谢大佬带给我的解决方法 ,让我解决了问题。。

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
文章来源于https://blog.csdn.net/qq_35366269/article/details/82112595.

Logo

前往低代码交流专区

更多推荐