open/app.js

19 lines
179 B
JavaScript
Raw Permalink Normal View History

2025-02-04 10:02:50 +08:00
// app.js
const {
miniProgram: {
envVersion
}
} = wx.getAccountInfoSync();
App({
onLaunch() {
this.globalData.version = envVersion;
},
globalData: {
}
})