Merge pull request #358 from kovalewvladimir/patch-1

fix: Default currentSize
This commit is contained in:
Archer 2023-10-23 08:50:39 +08:00 committed by GitHub
commit 3ef73f79ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ export const useAppStore = defineStore('app', {
layout: getStorage('layout') || 'classic', // layout布局
isDark: getStorage('isDark'), // 是否是暗黑模式
currentSize: getStorage('default') || 'default', // 组件尺寸
currentSize: getStorage('currentSize') || 'default', // 组件尺寸
theme: getStorage('theme') || {
// 主题色
elColorPrimary: '#409eff',