第一个报错:
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’