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/deconflict-component-refs/main.html

11 lines
181 B

<ul>
{#each components as component}
<li>
{#if component.edit}
<input ref:name bind:value=component.name />
{:else}
{component.name}
{/if}
</li>
{/each}
</ul>