首页 > 建站教程 > JS、jQ、TS >  vue echarts报错: Component series.map3D not exists. Load it fi正文

vue echarts报错: Component series.map3D not exists. Load it fi

在使用VUE Echarts的3d地图时,遇到了下面两个报错,原因是要么没引入,要么没安装:
第一个报错:
Component series.map3D not exists. Load it first
这个问题是由于没有安装echarts-gl,安装一下,再引入即可:
npm install echarts-gl
然后在main.js中引入
import echartsGL from ‘echarts-gl’ // 引入echarts
Vue.prototype.$echartsGL = echartsGL // 引入组件(将echarts注册为全局)
然后报错就没有了,另一个报错:
Cannot read property ‘features’ of null
原因是没有引入world.js
import world from ‘echarts/map/js/world.js’