mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 13:14:23 +01:00
15 lines
273 B
JavaScript
Vendored
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: {
|
|
|
|
},
|
|
})
|