Vue 3: How to forward all emitted events to a parent component? – Javascript
I have the following structure of Vue components: <TopParent> <!-- listen for EventProducer's events here --> <Child_1> <Child_2> <Child_3> ... <Child_N> <EventProducer /> <!-- emit events here --> </Child_N> </Child_3> </Child_2> </Child_1> </TopParent> Question I want to emit an event…