Events / Event modifiers
10/09/2024 by zavos.dev
Hey there, fellow Svelte enthusiasts!
Today, we're diving into the world of event modifiers powerful tools in Svelte that help us control how events interact with our components.
Today, we're diving into the world of event modifiers powerful tools in Svelte that help us control how events interact with our components.
You can prevent further clicks on this button by using
on:click|once=() => alert("clicked")
You can chain modifiers together,
e.g. on:click|once|capture=""
.