You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
467 B
TypeScript
17 lines
467 B
TypeScript
import { defineStore } from 'pinia'
|
|
import type { AppState } from './helper'
|
|
import { getLocalSetting, setLocalSetting } from './helper'
|
|
|
|
export const useAppStore = defineStore('app-store', {
|
|
state: (): AppState => getLocalSetting(),
|
|
actions: {
|
|
setSiderCollapsed(collapsed: boolean) {
|
|
this.siderCollapsed = collapsed
|
|
setLocalSetting(this.$state)
|
|
},
|
|
toggleSiderCollapse() {
|
|
this.setSiderCollapsed(!this.siderCollapsed)
|
|
},
|
|
},
|
|
})
|