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

14 lines
212 B
JavaScript
Raw Normal View History

import { defineStore } from 'pinia'
export const useAppSettingsStore = defineStore({
id: 'appSettings',
state: () => {
return { ...window.appSettings }
},
actions: {
},
})