This commit is contained in:
yangsy
2025-08-25 20:43:27 +08:00
parent 5ae218228b
commit 59a14cb9e1
2 changed files with 9 additions and 2 deletions

View File

@@ -9,5 +9,9 @@ export const useStationStore = defineStore('ndm-station-store', () => {
const onlineStationList = computed(() => stationList.value.filter((station) => station.online)); const onlineStationList = computed(() => stationList.value.filter((station) => station.online));
return { updatedTime, stationList, onlineStationList }; return {
updatedTime,
stationList,
onlineStationList,
};
}); });

View File

@@ -10,7 +10,10 @@ export const useThemeStore = defineStore(
return darkThemeEnabled.value ? darkTheme : lightTheme; return darkThemeEnabled.value ? darkTheme : lightTheme;
}); });
return { darkThemeEnabled, themeMode }; return {
darkThemeEnabled,
themeMode,
};
}, },
{ {
persist: true, persist: true,