v-on:myevent stopped working
Version
3.0.2
Reproduction link
Steps to reproduce
Item.vue
....setup(props, { emit }){ async function onClick(evt){ console.log("this works") emit('myevent', evt) } ....
ManyItems.vue
What is expected?
v-on:myevent triggers a function call
What is actually happening?
nothing is triggered
That's not a valid reproduction.
Looks similar to https://github.com/vuejs/vue-next/issues/2429
Updating @vue/compiler-sfc was the solution https://github.com/vuejs/vue-next/issues/2429#issuecomment-713463119