ADD: Profile management functionality & store

This commit is contained in:
Robert Kossessa
2024-01-27 02:42:37 +01:00
parent 11c66766bf
commit b23df03df6
8 changed files with 273 additions and 85 deletions

9
src/store.js Normal file
View File

@@ -0,0 +1,9 @@
import { reactive } from 'vue'
export const store = reactive({
device: {
profiles: [],
activeProfile: null,
},
currentProfile: null,
})