Bootstrap

引入echarts时报错 “TypeError: Cannot read properties of undefined (reading ‘init‘)“的解决方案

  1. 报错实例
    在vue当中引入Echarts图表的时候,终端报了"TypeError: Cannot read properties of undefined (reading ‘init’) " ‘的错误,翻译为:“TypeError:无法读取未定义的属性(读取’init’)”。
    在这里插入图片描述
  2. 解决方法
    用import * as echarts from ‘echarts’ 替换 import echarts from ‘echarts’,便可以有效解决。
import * as echarts from 'echarts' 

在这里插入图片描述

;