export 与 export default
踩坑记录:Uncaught (in promise) TypeError: Object(...) is not a function at eval
两者都能做的
- 导出常量、函数、文件、模块等
- 可在别的文件import 导入使用导出的(常量、函数、文件、模块)
两者不同的地方
- export可以有多个; export default只能有一个
- export default为模块指定默认输出,不用知道模块变量名
重点来了!export导出的,你若要import必须加上{}; export default不需要、不能加