0👍
I recommend to use inject/provide to make interaction between grandparent and grandchild component
App.vue
provide(){
return {
addComment: this.addComment
}
},
methods:{
addComment(){
console.log('wow')
}
}
// Comment.vue
inject:['addComment'],
mounted() {
this.addComment()
}
Source:stackexchange.com