vue项目报错:TypeError: Cannot read properties of undefined

vue项目报错:TypeError: Cannot read properties of undefined ,第1张

问题:

在vue当中引用echarts,控制台报错: “TypeError: Cannot read properties of undefined (reading ‘init‘)

原因:

报错是因为我们引用了echarts里面的init方法显示没有定义

解决方法:
import echarts from 'echarts'

将上面代码改为下面的方式导入

import * as echarts from 'echarts'

问题解决

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/941018.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-17
下一篇 2022-05-17

发表评论

登录后才能评论

评论列表(0条)

保存