mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-03 22:01:45 +01:00
20 lines
335 B
JavaScript
20 lines
335 B
JavaScript
|
import { defineStore } from 'pinia'
|
||
|
|
||
|
export const useBusStore = defineStore({
|
||
|
id: 'bus',
|
||
|
|
||
|
state: () => {
|
||
|
return {
|
||
|
migrationUri: null,
|
||
|
decodedUri: null,
|
||
|
goBackTo: null,
|
||
|
returnTo: null,
|
||
|
initialEditMode: null,
|
||
|
}
|
||
|
},
|
||
|
|
||
|
actions: {
|
||
|
|
||
|
},
|
||
|
})
|