export default 和 export 的主要区别 在于对应的import的区别:export 对应的 import 需要知道 export抛出的变量名或函数名 import{a,b}export default对应的 import 不需要知道 export抛出的变量名或函数名 import anyname