티스토리 뷰
상위 컴포넌트
sendType : 이게 키값이 되는거고 하위 컴포넌트에서 sendType를 통해 값을 전달 받는다
<menu-tab-component v-bind:sendType="checkType" />
하위컴포넌트
export default {
props : ['sendType'],
data() {
return{
}
},
methods: {
}
},
mounted() {
},
created() {
console.log(this.$props.sendType)
}
}
'개발일기' 카테고리의 다른 글
| AWS 503에러 Service Temporary Unavailable (0) | 2022.04.04 |
|---|---|
| vuex로 데이터 전달하기 (0) | 2021.10.15 |
| [Spring Boot] Security 로그인 페이지 (0) | 2021.08.19 |
| [오류] Flutter tool cannot access the file or directory. (0) | 2021.07.09 |
| Bitbucket에 프로젝트 업로드 하기 (0) | 2021.07.04 |