Question 4
Which of the following statement(s) is/are true about Vue.js event handling and communication?
The $emit method is used by child components to send custom events to parent components.
Event modifiers like .prevent and .stop can be chained together on the same event listener.
The v-on directive can only be used with native DOM events and cannot handle custom events.
Parent components can listen to child component events using the v-on or @ syntax in the template.