You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/event-handler-hoisted/main.svelte

14 lines
200 B

<script>
export let snapshot;
export let foo;
export let a;
export function baz(a) {
snapshot = a;
}
</script>
{#each foo as bar}
<button on:click='{() => baz(a)}'>click me</button>
{/each}