[Vue.js] 손자한테 조상 활동 찍어야 돼.
2650 단어 Vue.js
하고 싶은 일.
나는 이런 느낌으로 손자로부터 조상의 함수를 공격하고 싶다.
결론부터.
이처럼 각 계층은 부모$emit
에게 줄 필요가 있다.
결국 부모와 자식의 관계만 존재할 수 있기 때문에 조상에게 맡길 때는 먼저 부모를 거쳐야 한다.
Code
See the Pen Vue - grandchild-emit by tosite ( @tosite ) on CodePen .
시도해 본 일
이처럼 각 계층은 부모
$emit
에게 줄 필요가 있다.결국 부모와 자식의 관계만 존재할 수 있기 때문에 조상에게 맡길 때는 먼저 부모를 거쳐야 한다.
Code
See the Pen Vue - grandchild-emit by tosite ( @tosite ) on CodePen .
시도해 본 일
(실제 코드와는 다르지만 하지 않는 일은 전달할 수 있을 것 같다.)
<parent @parent-method="parentMethod">
<child @parent-method="parentMethod">
<grand-child @parent-method="parentMethod">
</grand-child>
</child>
</parent>
<parent @parent-method="parentMethod">
<child @parent-method="$parent.parentMethod">
<grand-child @parent-method="$parent.parentMethod">
</grand-child>
</child>
</parent>
이렇게 하면...
Event Bus 기능이 좋죠br/>
아니면 Vuex
상태 관리를 해야 하나요?
Vue, 편리하지만 어려워요.
Reference
이 문제에 관하여([Vue.js] 손자한테 조상 활동 찍어야 돼.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tosite0345/items/4c90156883135fac880f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)