From 59a14cb9e108cd2bc60f6ca246b9a2adf6504266 Mon Sep 17 00:00:00 2001 From: yangsy Date: Mon, 25 Aug 2025 20:43:27 +0800 Subject: [PATCH] style --- src/stores/station.ts | 6 +++++- src/stores/theme.ts | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/stores/station.ts b/src/stores/station.ts index a371b2e..c5a159e 100644 --- a/src/stores/station.ts +++ b/src/stores/station.ts @@ -9,5 +9,9 @@ export const useStationStore = defineStore('ndm-station-store', () => { const onlineStationList = computed(() => stationList.value.filter((station) => station.online)); - return { updatedTime, stationList, onlineStationList }; + return { + updatedTime, + stationList, + onlineStationList, + }; }); diff --git a/src/stores/theme.ts b/src/stores/theme.ts index 1ff074f..cb890c8 100644 --- a/src/stores/theme.ts +++ b/src/stores/theme.ts @@ -10,7 +10,10 @@ export const useThemeStore = defineStore( return darkThemeEnabled.value ? darkTheme : lightTheme; }); - return { darkThemeEnabled, themeMode }; + return { + darkThemeEnabled, + themeMode, + }; }, { persist: true,