mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-22 16:23:18 +01:00
20 lines
344 B
JavaScript
Vendored
20 lines
344 B
JavaScript
Vendored
import { defineStore } from 'pinia'
|
|
|
|
export const useBusStore = defineStore({
|
|
id: 'bus',
|
|
|
|
state: () => {
|
|
return {
|
|
migrationUri: null,
|
|
decodedUri: null,
|
|
inManagementMode: false,
|
|
editedGroupName: null,
|
|
username: null,
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
|
|
},
|
|
})
|