[Vuejs]-Vue emit parent not listening to custom event

0👍

You need to put the listener on the component where its come from, not on some div

<HelloWorld @whats-up="notMuch" msg="Hello Vue in CodeSandbox!"/>

0👍

You should listen to whats-up event in HelloWorld component. Code Should be like it

<HelloWorld @whats-up="notMuch" msg="Hello Vue in CodeSandbox!"/>

Leave a comment