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/spread-component-2/main.svelte

13 lines
219 B

<script>
import Widget from './Widget.svelte';
export let list;
export let qux = 0;
</script>
<div>
{#each list as item, index (item.foo)}
<Widget {...item} qux={qux} selected={qux === index} />
{/each}
</div>