js export

作者: 许道龙 | 来源:发表于2016-07-15 09:13 被阅读0次
    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