mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-18 00:45:55 +08:00
15 lines
169 B
JavaScript
15 lines
169 B
JavaScript
// app.js
|
|
|
|
import { appLogin } from "/utils/login.js";
|
|
|
|
App({
|
|
onLaunch(options) {
|
|
|
|
// 登录
|
|
appLogin(options);
|
|
},
|
|
globalData: {
|
|
userInfo: null
|
|
}
|
|
})
|