模块化

2019-11-24  本文已影响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

上一篇 下一篇

猜你喜欢

热点阅读