[Vuejs]-Vue.js no event emitted between child and parent components

0👍

Try to emit on $root instead:

handleOK(){
    this.$root.$emit('submit');
},
handleCancel(){
    this.$root.$emit('reset');
}

Check this answer as it might be related to your problem.

Leave a comment