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.
Source:stackexchange.com
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.