vue项目开发引入百度echarts报"export 'default' (imported as 'echarts') was not found in 'echarts'错误解决方法

915 ℃

问题描述:安装百度echarts脚手架npm install echarts -S,引入echarts库运行项目报"export 'default' (imported as 'echarts') was not found in 'echarts'错误!

引入方法:

import echarts from 'echarts'; //报错

原因分析:

Echarts官网(升级指南)有说明,Echarts 5.x不再支持上面的引入方式。

解决方法:

import * as echarts from 'echarts'; //正确引入

现在运用应该可以了~

vue项目开发中一般会出现哪些报错?(vue常见的10种错误)

Vue项目开发中报“TypeError: Cannot read property 'yyy' of null”错误怎么解决?

百度echarts雷达图radar根据分数点显示每个不同颜色

百度ECharts文档官网介绍

vue3如何解决store.state.count错误的取值

标签: vue报错, 百度echarts

上面是“vue项目开发引入百度echarts报"export 'default' (imported as 'echarts') was not found in 'echarts'错误解决方法”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_3682.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

js如何切割字符串(实现方法介绍)
帝国cms教程之自定义页面
Nginx如何设置限流?方法介绍
织梦编辑器在添加超链接时怎样设置默认新窗口
php开发中如何设置断点调试