We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c39988 commit efe1718Copy full SHA for efe1718
src/App.vue
@@ -25,7 +25,7 @@
25
26
// support Multi-language
27
const { getAntdLocale } = useLocale();
28
- const { getDarkMode, getThemeColor, getFontSize } = useRootSetting();
+ const { getDarkMode, getThemeColor } = useRootSetting();
29
30
const getTheme = computed(() => {
31
const isDark = unref(getDarkMode) === ThemeEnum.DARK;
@@ -35,7 +35,6 @@
35
colorPrimary: isDark ? darkPrimaryColor : unref(getThemeColor),
36
colorLink: isDark ? darkPrimaryColor : unref(getThemeColor),
37
colorInfo: isDark ? darkPrimaryColor : unref(getThemeColor),
38
- fontSize: unref(getFontSize),
39
},
40
};
41
});
0 commit comments