Error in mounted hook: “TypeError: Cannot read properties of undefined (reading ‘init‘)“
前端vue项目使用echarts报错解决方案。 Error in mounted hook: "TypeError: Cannot read properties of undefined (reading 'init')"
·
前端vue项目使用echarts报错解决方案,亲测有效。

(1)原来导入echarts使用的是如下代码:
import echarts from 'echarts'
(2)将引入echarts的写法改为如下形式,报错得以解决。
import * as echarts from 'echarts'
(3)刷新页面,可以看到表格绘制成功
更多推荐



所有评论(0)