import { reactive } from 'vue' import { httpService } from '@/services' export const settingStore = { state: reactive({ 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) } }