FrontEnd/Vue (1) 썸네일형 리스트형 vuex에서의 mapState, mapGetters, mapActions의 사용에 대하여 전역상태를 관리하는 vuex에서의 mapState, mapGetters, mapActions의 사용에 대하여 mapActions 함수는 특정 모듈에서 액션들을 가져와서 컴포넌트 내에서 직접적으로 사용할 수 있도록 해줌. 예시로 다음과 같은 코드에서 export const layoutMethods = mapActions('layout', ['changeLayoutType', 'changeLayoutWidth', 'changeLeftSidebarType', 'changeTopbar', 'changeLoaderValue']) mapActions함수는 layout이라는 모듈에서 중괄호 안에 있는 엑션들을 가져와서 layoutMethods라는 객체가 만들어 지는 것! 마찬가지로 다음과 같은 코드에서 mapS.. 이전 1 다음