[Vuejs]-Vuex state and getters are updated, but computed value doesn't react

2👍

Looks like you are using two different instances of Vue. In main.js you are importing vue but in src/store/index.js you are importing vue/dist/vue.common.jsand telling each one to use Vuex. Try using vue for both imports.

Leave a comment