将原来的引用方式:import echarts from “echarts”
更改为:import * as echarts from “echarts”
因为5.0以上版本export * (导出的是*)
vue 使用 echarts 5.0 “export ‘default‘ (imported as ‘echarts‘) was not found in ‘echarts‘
最新推荐文章于 2024-08-22 16:31:14 发布
将原来的引用方式:import echarts from “echarts”
更改为:import * as echarts from “echarts”
因为5.0以上版本export * (导出的是*)