Shared (backend): If two users opens the UI on sep devices they should access the same backend state. This means that the UI is forbidden to keep track of any part of the shared state on its own. Defined in src/store/state.ts
Unique: non-functional settings, like dark mode preference. Something like local storage
Is the unique state a part of the Vuex store? I guess Vue.use will make this tricky.
@JonathanFager what requirements do you have on the shared state, from a UX persp?
Design issue for the UI state.
It makes sense to split the state into:
src/store/state.ts
Is the unique state a part of the Vuex store? I guess Vue.use will make this tricky.
@JonathanFager what requirements do you have on the shared state, from a UX persp?