Use of event modifier #212
-
I am new to svelte, and found that in svelte there is event modifier that you can chain in some event like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I am curious if the modifiers can still be used in a simple way as well. For now, using a function is a workaround, for example:
|
Beta Was this translation helpful? Give feedback.
I am curious if the modifiers can still be used in a simple way as well. For now, using a function is a workaround, for example:
function handleClick(event: Event) { event.stopPropagation(); // rest of code }
<Button on:click={handleClick} />