mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 18:25:09 +01:00
14 lines
212 B
JavaScript
Vendored
14 lines
212 B
JavaScript
Vendored
import { defineStore } from 'pinia'
|
|
|
|
export const useAppSettingsStore = defineStore({
|
|
id: 'appSettings',
|
|
|
|
state: () => {
|
|
return { ...window.appSettings }
|
|
},
|
|
|
|
actions: {
|
|
|
|
},
|
|
})
|