TypeError: this.dom.getContext is not a function

Vue引进echarts时报错:
解决办法:在初始化echarts的时候,只能使用dom原生方法获取标签,而不能使用 refs 获取

let dom = this.$refs.charts;
改成 let dom = document.getElementById("#chart");

TypeError: this.dom.getContext is not a function_第1张图片

你可能感兴趣的:(错误处理,javascript)