약속의 then()을 커밋하면 Vuex3 변환이 작동하지 않음 다음과 같은 vuex 스토어가 있습니다. new Vuex.Store({ state: { foo: "initial value" }, mutations: { update_foo (state, payload) { state.foo = payload; } }, actions: { update (context) { context.commit("update_foo", "bar"); APIwrapper("api url to get data") .then(response => context.commit("update_foo", "not bar")) .catch(e => console.error(e)); } } } 내가 할 때store.dispatch('up..