vue echarts引入china.js报错Cannot read property ‘echarts’ of undefined

在vue中引入echarts后,我import了网上下载的china.js,但是会报错 Cannot read property 'echarts' of undefined

这是因为在vue组件中引入的话 , 地图的js文件中的this指向问题 ,会造成echarts在china.js没有引入

在这里插入图片描述

解决方法 引入node_modules里面的包:
==import 'echarts/map/js/china.js';==

你可能感兴趣的:(vue echarts引入china.js报错Cannot read property ‘echarts’ of undefined)