Skip to content

Commit

Permalink
Fix: Default currentSize
Browse files Browse the repository at this point in the history
  • Loading branch information
kovalewvladimir committed Oct 22, 2023
1 parent 2c4ff7d commit af583c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/app.ts
Expand Up @@ -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',
Expand Down

0 comments on commit af583c7

Please sign in to comment.