v-charts(vue echarts)报import echarts from 'echarts/lib/echarts' is not supported anymore. Use错误的解决方案
错误详情:
import echarts from 'echarts/lib/echarts' is not supported anymore. Use "import * as echarts from 'echarts/lib/echarts'" instead;
错误原因
echarts5.0的源码变了,不再支持“从'echarts/lib/echarts'导入echarts”,改用“import*as echarts from'echarts/lib/echarts'”
因此只需要将echarts降级为4.x的版本
# 卸载 Echarts5.0 npm uninstall echarts # 规定版本来安装(选择自己喜欢的版本安装) npm install echarts@4.9.0 --save # 导入使用 import echarts from 'echarts'