Vue整合完Echart使用的时候报错:"TypeError: Cannot read properties of undefined (reading 'init')" 大概意思是无法读取未定义的属性(init)
在网上引用echarts的写法是在main.js 引入这两行
1. // 引入echarts 2. import echarts from 'echarts' 3. Vue.prototype.$echarts = echarts
这是错误的写法 正确的是
1. import * as echarts from 'echarts' 2. Vue.prototype.$echarts = echarts