VueJ + Vuex + map Actions 문서에는 동작을 통해 호출된 돌연변이를 제외하고 상태는 불변이라고 쓰여 있습니다.네 알겠습니다. 컴포넌트 mapGetters, mapActions에서 사용하고 있습니다. 스토어: export default { namespaced: true, state: { color: "violet" }, mutations: { changeColor(state, newColor) { state.color = newColor }, }, actions: { changeColor({ commit }, newColor) { commit('changeColor', newColor) } } 컴포넌트: ... methods: { ...mapActions({ setColor: 'store..