From f23df92c1831529dadba0ddcdece26ff3fb6d2c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?piexlMax=28=E5=A5=87=E6=B7=BC?= Date: Fri, 5 Dec 2025 17:51:18 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=E8=8E=B7=E5=8F=96log?= =?UTF-8?q?o=E7=9A=84=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/logo/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/logo/index.vue b/web/src/components/logo/index.vue index 88c335b5a..5d2ab501b 100644 --- a/web/src/components/logo/index.vue +++ b/web/src/components/logo/index.vue @@ -11,8 +11,8 @@ const props = defineProps({ } }) -const darkLogoPath = '/logo-dark.png'; -const lightLogoPath = '/logo.png'; +import darkLogoPath from "/public/logo.png"; // 系统没有暗黑模式logo,如果需要暗黑模式logo请自行修改文件路径。 +import lightLogoPath from "/public/logo.png"; const appStore = useAppStore(); const { isDark } = storeToRefs(appStore);