1
0
mirror of https://github.com/Bubka/2FAuth.git synced 2025-06-12 07:56:50 +02:00

15 lines
273 B
JavaScript
Vendored

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