Files
fastbee/wechat/app.js
2021-08-30 09:56:13 +08:00

15 lines
169 B
JavaScript

// app.js
import { appLogin } from "/utils/login.js";
App({
onLaunch(options) {
// 登录
appLogin(options);
},
globalData: {
userInfo: null
}
})