Set up the Start view

This commit is contained in:
Bubka
2023-10-09 13:00:56 +02:00
parent bde05233c5
commit c389378dc3
5 changed files with 172 additions and 14 deletions

19
resources/js_vue3/stores/bus.js vendored Normal file
View File

@@ -0,0 +1,19 @@
import { defineStore } from 'pinia'
export const useBusStore = defineStore({
id: 'bus',
state: () => {
return {
migrationUri: null,
decodedUri: null,
goBackTo: null,
returnTo: null,
initialEditMode: null,
}
},
actions: {
},
})

16
resources/js_vue3/stores/data.js vendored Normal file
View File

@@ -0,0 +1,16 @@
import { defineStore } from 'pinia'
export const useDataStore = defineStore({
id: 'data',
state: () => {
return {
twofaccounts: [],
groups: [],
}
},
actions: {
},
})