basic routing and info display

This commit is contained in:
Julian Krauser 2024-10-04 12:47:04 +02:00
parent c1e9784b4a
commit e70e6644a6
12 changed files with 211 additions and 125 deletions

View file

@ -13,6 +13,7 @@ export const useProtocolStore = defineStore("protocol", {
activeProtocol: null as number | null,
activeProtocolObj: null as ProtocolViewModel | null,
loadingActive: "loading" as "loading" | "fetched" | "failed",
syncing: "synced" as "synced" | "syncing" | "detectedChanges" | "failed",
};
},
actions: {