[Vue.js] 11 Vuex Helper
Vuex Helper Vuex의 각 속성들을 더 쉽게 사용하는 방법 - Helper Store에 있는 아래 4가지 속성들을 간편하게 코딩하는 방법 state -> mapState getters -> mapGetters mutations -> mapMutations actions -> mapActions Helper의 사용법 helper를 사용하고자 하는 vue 파일에서 아래와 같이 해당 helper를 로딩 만약 헬퍼를 사용하지 않았다면, State에 정의 된 num에 접근하려면 this.$store.state.num 와 같이 접근해야 한다. 생소하게 보이는 mapState앞에 있는 ...은 ES6의 Object Spread Operator이다. //App.vue import { mapState } fro..
2021.09.24