on:click on:input on:submit
Attach DOM event listeners directly in Svelte template syntax.
Event Directives
Use on: followed by the DOM event name to attach a listener.
<button on:click={handleClick}>Click</button>Inline Handlers
Pass an arrow function for inline logic.
<button on:click={() => count++}>+</button>