feat: 改造 theme store 支持暗黑模式双选架构

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-13 01:45:56 +08:00
parent 6fd9cfbff9
commit ce24937ba0
8 changed files with 79 additions and 30 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ const leaveTypeColors: Record<string, string> = {
const filterManager = ref('')
const filterStatus = ref('')
const isLight = computed(() => themeStore.currentTheme === 'light')
const isLight = computed(() => themeStore.mode === 'light')
const today = new Date().toISOString().slice(0, 10)