[Vuejs]-Laravel – Vue JS Sibling component communication

-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
     });
}

Leave a comment