From 92585a0934a79b1a724e27e630c4f8ebf69b6285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=81=9A=E7=A0=81=E5=86=9C?= <599854767@qq.com> Date: Mon, 23 May 2022 18:40:30 +0800 Subject: [PATCH] =?UTF-8?q?size=E9=BB=98=E8=AE=A4=E6=94=B9=E7=94=A8small?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 +- src/store/modules/app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 98d7c25..0408db9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -20,7 +20,7 @@ const lang = computed(() => { return store.getters.language }) const locale = ref(zh) -const size = ref('default') +const size = ref('small') size.value = store.getters.size watch( token, diff --git a/src/store/modules/app.js b/src/store/modules/app.js index 1d1def6..69672f6 100644 --- a/src/store/modules/app.js +++ b/src/store/modules/app.js @@ -7,7 +7,7 @@ const state = { hide: false }, device: 'desktop', - size: Cookies.get('size') || 'default', + size: Cookies.get('size') || 'small', lang: Cookies.get('lang') || 'zh-cn' }