OpenImaging / miqa-phase1

A web application for medical imaging quality assurance
MIT License
20 stars 8 forks source link

Refactor Vuex store #108

Open dchiquito opened 3 years ago

dchiquito commented 3 years ago

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.