minor: - change background for category list for dark theme compatibility - try to 'fix' video playback errors in console
13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
export const useThemeStore = defineStore('themeStore', {
|
|
state: () => ({
|
|
theme: '',
|
|
}),
|
|
actions: {
|
|
async set(theme: string) {
|
|
this.theme = theme;
|
|
},
|
|
},
|
|
persist: {
|
|
storage: piniaPluginPersistedstate.localStorage(),
|
|
},
|
|
});
|