5
如何在ES6中导出导入的对象?
用例很简单:我只想导出名称与导入的对象相同的对象。 例如: import React from 'react'; export React; 但这不起作用。我要写: import React from 'react'; export const React = React; 但这很奇怪。什么是正确的方法? 更新时间: 感谢您的帮助和参考。我已经用许多线索解决了我的问题。我想分享一些常见的案例和解决方案。 出口进口 import d, {obj} from '...'; export {obj, d}; export {obj as name1, d as name2}; 再出口所有已命名的进口 export * from '...'; export * as name1 from '...'; 再出口一些已命名的进口货 export …
242
import
export
ecmascript-6