I'm making a simple teleprompter app, and the idea is to control it through a local PC but to have the same view/Vuex state while accessing the page from my tablet. So, same page, same state, multiple devices.
Do I understand correctly that the only way is to duplicate all the mutation requests to the server, save them to the DB, monitor changes in the DB, and replicate them on the "client" device?
I could always share the screen image as a video, so the question is theoretical, and any ideas would do :)
P.S. Similar-looking problem: Recommended strategy to sync vuex state with server.