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