重导出
export {defalut as Mydefalut, function2} from ***.js
重导出 / 聚合
为了使模块导入变得可用,在一个父模块中“导入/导出”这些不同模块也是可行的。也就是说,你可以创建单个模块,集中多个模块的多个导出。
不能使用
1 | export defalut from ***.js //规定无效 |
需要给默认导出项命名 (规定)
1 | export {defalut as myDefalut} from ***.js |
ref
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Statements/export
- Post title:重导出
- Post author:Willem Zhang
- Create time:2022-03-24 14:06:15
- Post link:https://ataraxia.top/2022/03/24/重导出/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.
Comments