[Vuejs]-Vue.JS: Why won't parent element receive event? Does parent have to be a custom component?

1👍

I don’t think Vue events bubble like DOM ones, you need to catch them on the emitting component, so <button-component @button-clicky="gotevent" />

👤kevmc

Leave a comment