export命名导出与默认导出

匿名 (未验证) 提交于 2019-12-03 00:27:02
 

使用命名导出

// module "my-module.js" function cube(x) {   return x * x * x; } const foo = Math.PI + Math.SQRT2; export { cube,foo };
在其它脚本 (比如import)
 
import { cube, foo } from 'my-module.js'; console.log(cube(3)); // 27 console.log(foo);    // 4.555806215962888

使用默认导出

// module "my-module.js" export default function cube(x) {   return x * x * x; }
在另一个脚本中,可以直接导入默认导出
// module "my-module.js"


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!