koel/resources/assets/js/stores/settingStore.ts
2022-07-04 10:36:39 +02:00

17 lines
367 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)
},
async update (settings: Settings) {
await httpService.put('settings', settings)
Object.assign(this.state, settings)
}
}