问答详情
源自:3-3 ECharts+Webpack案例

为什么我的报错会是这样的

 Uncaught TypeError: Cannot read property 'init' of undefined

提问者:帅气葡萄老爹 2021-02-04 22:40

个回答

  • 帅气葡萄老爹
    2021-02-04 23:14:01

    去除 default exports 的支持

    如果使用者在 v4 中这样引用了 echarts:

    import echarts from 'echarts';// 或者按需引入import echarts from 'echarts/lib/echarts';

    这两种方式,v5 中不再支持了。

    使用者需要如下更改代码解决这个问题:

    import * as echarts from 'echarts';// 按需引入import * as echarts from 'echarts/lib/echarts';

    原来是引入的问题  因为用的是5了