From ca1113fc69e0c14edb427f28b5cd2acc0cd8506c Mon Sep 17 00:00:00 2001 From: lz-ui Date: Thu, 16 Oct 2025 09:43:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E4=B8=BB=E9=A2=98=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/settings.js b/src/store/modules/settings.js index 9ed6cff..22a0fd9 100644 --- a/src/store/modules/settings.js +++ b/src/store/modules/settings.js @@ -2,7 +2,7 @@ import defaultSettings from '@/settings' import { useDark, useToggle } from '@vueuse/core' import { useDynamicTitle } from '@/utils/dynamicTitle' -const isDark = useDark() +const isDark = ref(false) // useDark() const toggleDark = useToggle(isDark) const { sideTheme, showSettings, topNav, tagsView, tagsIcon, fixedHeader, sidebarLogo, dynamicTitle, footerVisible, footerContent } = defaultSettings