소개
소개글이 비어있어요
게시글
질문&답변
2022.03.17
스토어 모듈화 시 ...mapState
저는 todoApp.js 모듈에 있는 headerText를 전달해주는 getters 함수를 하나 만들어서 전달하는 방식으로 해결했어요!storedTodoItems() 로 todoItems를 전달해서 리스트를 뿌려준 것처럼요. // todoApp.js const state = { headerText: 'My TODO', todoList: storage.fetch(), }; const getters = { getHeaderText(state) { return state.headerText; }, storedTodoItems(state) { return state.todoList; }, }; // TodoHeader.vue {{ this.headerText }} import { mapGetters } from 'vuex'; export default { computed: { ...mapGetters({ headerText: 'getHeaderText', }), }, };
- 4
- 4
- 753
고민있어요
2021.10.08 15:33
좋은 강의 잘 들었습니다 감사합니다!!
- 0
- 1
- 99
고민있어요
2021.08.19 16:46
UDP란 단어를 어디서 들어봤나 했는데
- 0
- 1
- 282