2FAuth/resources/js_vue3/stores/appSettings.js

19 lines
347 B
JavaScript
Vendored

import { defineStore } from 'pinia'
// import { useApi } from '@/api/useAPI.js'
// const api = useApi()
export const useAppSettingsStore = defineStore({
id: 'settings',
state: () => {
return { ...window.appSettings }
},
actions: {
updateSetting(setting) {
this.settings = { ...this.state.settings, ...setting }
},
},
})