From c1141c526700f9db0efdf515dbf0a499f8685b9d Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 24 May 2018 09:48:02 +0900 Subject: [PATCH] Fix bug --- src/client/app/init.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/app/init.ts b/src/client/app/init.ts index d764beb3b..ed0fe4826 100644 --- a/src/client/app/init.ts +++ b/src/client/app/init.ts @@ -104,7 +104,7 @@ export default (callback: (launch: (router: VueRouter, api?: (os: MiOS) => API) data() { _unwatchDarkmode_: null }, - created() { + mounted() { const apply = v => { if (this.$el.setAttribute == null) return; if (v) { @@ -114,7 +114,7 @@ export default (callback: (launch: (router: VueRouter, api?: (os: MiOS) => API) } }; - this.$nextTick(() => apply(os.store.state.device.darkmode)); + apply(os.store.state.device.darkmode); this._unwatchDarkmode_ = os.store.watch(s => { return s.device.darkmode;