报错:想用echarts但是报错Error in mounted hook: “TypeError: Cannot read properties of undefined (reading ‘init‘)“

发布时间 2023-03-31 09:15:39作者: 如意酱

解决方案:

1.版本问题,main.js文件中,

   5.0以下版本写:import echarts from 'echarts '

   5.0以上版本写: import * as echarts from ‘echarts

   都要写:Vue.prototype.$echarts = echarts

2.删掉node_modules文件,重新install

3.开发页面不要直接使用echarts.init(),要用this.$echarts.init()