Skip to content

Commit

Permalink
fix: 修复配置响应丢失问题
Browse files Browse the repository at this point in the history
  • Loading branch information
yuntian001 committed Aug 10, 2023
1 parent 4553bde commit 64393f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/meSettingMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
import { themeConfig as origionThemeConfig } from '@/config';
import { useSettingStore, useUserStore } from '@/store';
const setting = useSettingStore();
const themeConfig = setting.themeConfig;
const { themeConfig } = storeToRefs(setting);
const userStore = useUserStore();
const predefinePrimaryColors = reactive([
'#409EFF',
Expand Down

0 comments on commit 64393f1

Please sign in to comment.