style
This commit is contained in:
@@ -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,
|
||||
};
|
||||
});
|
||||
|
||||
@@ -10,7 +10,10 @@ export const useThemeStore = defineStore(
|
||||
return darkThemeEnabled.value ? darkTheme : lightTheme;
|
||||
});
|
||||
|
||||
return { darkThemeEnabled, themeMode };
|
||||
return {
|
||||
darkThemeEnabled,
|
||||
themeMode,
|
||||
};
|
||||
},
|
||||
{
|
||||
persist: true,
|
||||
|
||||
Reference in New Issue
Block a user