koel/resources/assets/js/stores/settingStore.ts
2022-04-24 11:50:45 +03:00

21 lines
410 B
TypeScript

import { reactive } from 'vue'
import { httpService } from '@/services'
export const settingStore = {
state: reactive<Settings>({
media_path: ''
}),
init (settings: Settings) {
Object.assign(this.state, settings)
},
get all () {
return this.state
},
async update (settings: Settings) {
await httpService.put('settings', settings)
Object.assign(this.state, settings)
}
}