2FAuth/resources/js/stores/appSettings.js
2023-12-01 15:29:26 +01:00

14 lines
212 B
JavaScript
Vendored

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