nuxt-prawo-jazdy/store/themeStore.ts
2025-12-16 20:21:04 +01:00

13 lines
255 B
TypeScript

export const useThemeStore = defineStore('themeStore', {
state: () => ({
theme: '',
}),
actions: {
async set(theme: string) {
this.theme = theme;
},
},
persist: {
storage: piniaPluginPersistedstate.localStorage(),
},
});