navmini/weapp/app.js
eric 518410edd0 feat: 游民导航 H5、微信小程序与小红书小工具
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-27 12:15:00 -05:00

16 lines
278 B
JavaScript

App({
globalData: {
theme: "light",
},
onLaunch() {
try {
const saved = wx.getStorageSync("navmini-theme");
if (saved === "light" || saved === "dark") {
this.globalData.theme = saved;
}
} catch (e) {
/* ignore */
}
},
});