export { myFunction }; // 导出一个函数声明
export const foo = Math.sqrt(2); // 导出一个常量
export default myFunctionOrClass
使用
// module "my-module.js"
let cube = function cube(x) {
return x * x * x;
}
export default cube;
export { myFunction }; // 导出一个函数声明
export const foo = Math.sqrt(2); // 导出一个常量
export default myFunctionOrClass
// module "my-module.js"
let cube = function cube(x) {
return x * x * x;
}
export default cube;
本文标题:js export
本文链接:https://www.haomeiwen.com/subject/ydlyjttx.html
网友评论