[Vuejs]-Vue3 (SFC api) event 'emit' is not propagated to parent

1👍

You have a wrong.

<HelloWorld msg="Click me!" @click_text="clicked" />

In this line, you should not put _ for click_text, you should use – instead.

<HelloWorld msg="Click me!" @click-text="clicked" />
👤m kh

Leave a comment