-1👍
You can use the $root
instance to reach components outside the vertical chain.
Like this:
created() {
this.$root.$emit('feedbacksChanged');
}
created() {
this.$root.$on('feedbacksChanged', ()=>{
// code
});
}
Source:stackexchange.com