UPD: Profile management del+dup

This commit is contained in:
Robert Kossessa
2024-01-27 16:00:26 +01:00
parent 96b305b74d
commit 4b3dd0ab90
4 changed files with 193 additions and 38 deletions

View File

@@ -12,4 +12,5 @@ export const store = reactive({
currentProfile: computed(() => {
return store.device.profiles.find(p => p.id === store.currentProfileId)
}),
profileIds: computed(() => store.device.profiles.map(p => p.id)),
})