頁面需要設(shè)置亮暗兩種主題,需將設(shè)置之后的主題類型存進(jìn) localStorage ,如果直接在?enhanceApp.js 中初始化,打包時(shí)會(huì)報(bào) document is not defined ,window is not defined
解決方案
定義一個(gè)全局 mixin ,將主題類型初始化放在 mounted 生命周期鉤子里
Vue.mixin({
? mounted() {
? ? document.body.setAttribute('data-theme', window.localStorage.getItem('data-theme') || 'light');
? ? window.localStorage.setItem('data-theme', window.localStorage.getItem('data-theme') || 'light');
? }
})