问题:在 vue中通过 npm命令 下载 导入echarts,在代码中import时失败
import echarts from 'echarts'
//.......
mounted() {
console.log(echarts) // --> undefined
}
- 原因:因为 5.0之后的echart版本 导入语法变了
import * as echarts from 'echarts'
引入:https://echarts.apache.org/zh/tutorial.html#ECharts%205%20%E5%8D%87%E7%BA%A7%E6%8C%87%E5%8D%97