You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 11, 2026. It is now read-only.
The Vuex store implements practically no mutations and manipulates state directly instead. This makes Vuex almost entirely non-reactive and largely invalidates using Vuex at all.
We should either refactor the store to use mutations wherever it currently sets state directly, or remove Vuex entirely.
The Vuex store implements practically no mutations and manipulates
statedirectly instead. This makes Vuex almost entirely non-reactive and largely invalidates using Vuex at all.We should either refactor the store to use mutations wherever it currently sets
statedirectly, or remove Vuex entirely.