weui-wxss
Version:
19 lines (18 loc) • 327 B
JavaScript
module.exports = {
data: {
theme: '',
},
themeChanged(theme) {
this.setData({
theme,
});
},
onLoad() {
const app = getApp();
this.themeChanged(app.globalData.theme);
app.watchThemeChange(this.themeChanged);
},
onUnload() {
getApp().unWatchThemeChange(this.themeChanged);
},
};