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/site/content/tutorial/16-special-elements/02-svelte-component/text.md

23 lines
532 B

---
title: <svelte:component>
---
A component can change its category altogether with `<svelte:component>`. Instead of a sequence of `if` blocks...
```html
{#if selected.color === 'red'}
<RedThing/>
{:else if selected.color === 'green'}
<GreenThing/>
{:else if selected.color === 'blue'}
<BlueThing/>
{/if}
```
...we can have a single dynamic component:
```html
<svelte:component this={selected.component}/>
```
The `this` value can be any component constructor, or a falsy value — if it's falsy, no component is rendered.