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 41d9453 commit f23df92Copy full SHA for f23df92
web/src/components/logo/index.vue
@@ -11,8 +11,8 @@ const props = defineProps({
11
}
12
})
13
14
-const darkLogoPath = '/logo-dark.png';
15
-const lightLogoPath = '/logo.png';
+import darkLogoPath from "/public/logo.png"; // 系统没有暗黑模式logo,如果需要暗黑模式logo请自行修改文件路径。
+import lightLogoPath from "/public/logo.png";
16
17
const appStore = useAppStore();
18
const { isDark } = storeToRefs(appStore);
0 commit comments