export default 和 export 的区别
export 用于导出常量、函数、文件、模块等。
区别
通过export导出,导入时需要加{},export defalut 导出的则不需要
export default为模块指定默
2020-04-15