mirror of https://github.com/sveltejs/svelte
27 lines
623 B
27 lines
623 B
<script>
|
|
import RedThing from './RedThing.svelte';
|
|
import GreenThing from './GreenThing.svelte';
|
|
import BlueThing from './BlueThing.svelte';
|
|
|
|
const options = [
|
|
{ color: 'red', component: RedThing },
|
|
{ color: 'green', component: GreenThing },
|
|
{ color: 'blue', component: BlueThing },
|
|
];
|
|
|
|
let selected = options[0];
|
|
</script>
|
|
|
|
<select bind:value={selected}>
|
|
{#each options as option}
|
|
<option value={option}>{option.color}</option>
|
|
{/each}
|
|
</select>
|
|
|
|
{#if selected.color === 'red'}
|
|
<RedThing/>
|
|
{:else if selected.color === 'green'}
|
|
<GreenThing/>
|
|
{:else if selected.color === 'blue'}
|
|
<BlueThing/>
|
|
{/if} |