Events / Event modifiers

10/09/2024 by zavos.dev

In Svelte, events are handled using the on: directive, allowing components to listen for and react to user interactions or changes in state.

This button is an imported component


Main Function:


handleMessage(event)

This function is defined to handle the message event.


alert(event.detail.text)

When the message event is triggered, this line displays an alert containing the text property of the event's detail object.


Component:


const dispatch = createEventDispatcher();

This creates an event dispatcher object named dispatch.


sayHello()

This function is defined to simulate triggering the message event.


dispatch('message', detail)

This line dispatches a custom event named message with a detail object containing a text property. The text property is set to the specified message.


Key points


  • The createEventDispatcher function is used to create an event dispatcher object.
  • Custom events are dispatched using the dispatch object.
  • The detail property of an event object can be used to pass data.
  • Event listeners can be attached to components using the on: directive.