[Vuejs]-How to change state from a vuex store for all users

0👍

Vuex is for managing app state in the browser for a single user.
What you are looking to do is to change the state across multiple users. This would require you leverage a websocket implementation. This would allow your backend to broadcast changes to your client side app.

Leave a comment