1aaef71f52
Document-driven MVP with FastAPI backend, Vue H5, WeChat mini shell, product demo, and Docker dev stack. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
216 B
JavaScript
13 lines
216 B
JavaScript
App({
|
|
globalData: {
|
|
apiBase: 'http://127.0.0.1:8000',
|
|
token: '',
|
|
},
|
|
onLaunch() {
|
|
const token = wx.getStorageSync('happy_up_token')
|
|
if (token) {
|
|
this.globalData.token = token
|
|
}
|
|
},
|
|
})
|