[docs] add `<svelte:element>` example

pull/7439/head
Kazuma Oe 4 years ago
parent 467ba0a920
commit f3b4738a89

@ -0,0 +1,12 @@
<script>
const options = ['h1', 'h3', 'p'];
let selected = options[0];
</script>
<select bind:value={selected}>
{#each options as option}
<option value={option}>{option}</option>
{/each}
</select>
<svelte:element this={selected}>I'm a {selected} tag</svelte:element>
Loading…
Cancel
Save