- props에서 전달받은 값을 변경해도 부모 컴포넌트에서 값이 변경되지 않는다
- 자식 컴포넌트에서 부모 컴포넌트의 함수를 호출하면서 매개변수를 같이 넘겨주는 방식
ChildVue.vue
<script>
export default {
name: 'ChildVue',
methods: {
childMethod(param) {
this.$emit('parentMethod', param);
}
}
}
</script>
ParentVue.vue
<script>
import SearchWindow from '@/components/ChildVue.vue';
export default {
name: 'ParentVue',
components: {
ChildVue
},
methods: {
parentMethod(param){
console.log(param);
}
}
}
</script>
'웹 개발 > Vue' 카테고리의 다른 글
[Vue] 프로젝트 생성 (CLI) (0) | 2022.10.05 |
---|---|
[Vue] Docker 배포 방법 (nginx 서버) (0) | 2022.10.04 |
[Vue] 전역변수 사용하기 (0) | 2022.10.03 |
[Vue] 설치 방법 (0) | 2022.09.28 |