模块化

作者: 老陈的记事本 | 来源:发表于2019-11-24 15:51 被阅读0次

    // common.js
    function sayHello(name) {
    console.log(Hello ${name} !)
    }
    function sayGoodbye(name) {
    console.log(Goodbye ${name} !)
    }

    module.exports.sayHello = sayHello
    exports.sayGoodbye = sayGoodbye

    https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/module.html

    相关文章

      网友评论

          本文标题:模块化

          本文链接:https://www.haomeiwen.com/subject/ztmlwctx.html