A Useful Guide to Programmatically Subscribing to Child Events in Vue 3
Liam Lambert
28 January 2025
A Useful Guide to Programmatically Subscribing to Child Events in Vue 3

Programmatically subscribing to child events in Vue 3 presents a barrier for developers coming from Vue 2, where $on made the procedure simple. With capabilities like VNode traversal and useSlots, Vue 3 offers contemporary solutions for handling recursive or dynamic child components. These resources are essential for developing effective, scalable apps.

Understanding How JavaScript Identifies Events Irrespective of Variable Names
Arthur Petit
28 September 2024
Understanding How JavaScript Identifies Events Irrespective of Variable Names

Events in functions are immediately recognized by JavaScript since the browser sends an event object to the callback of the listener. The event object offers information such as the key that was pushed, regardless of the name of the parameter. Developers can effectively handle user interactions by utilizing tools like addEventListener and event propagation strategies like event delegation.