[Vuejs]-VueJs Nested Components Can't Result of emitted function

0👍

This post: VueJs 2.0 emit event from grand child to his grand parent component has many ways to solve this kind of a problem. I would recommend using vuex for managing state and actions. Other option:

this.$parent.$emit("submit", {somekey: somevalue})

Leave a comment