mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-28 07:52:41 +01:00
993b40201c
* New FAQ, new renderer * Push blog stuff * Fix blog posts * Add tutorial to be rendered * Update documentation/content/blog/2023-03-09-zero-config-type-safety.md Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Update documentation/content/blog/2023-03-09-zero-config-type-safety.md Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Revamp a lot of renderer, make it (soft) compatible with sveltekit * Remove markdown types * Clean up faq +page * Document stuff * Make the options more explicity * chore(site-2): Restructure docs pt 2 (#8604) * Push * Update readme * Push * inor accessibility fix * minr stuff * Add prepare * Run prettier * Remove test script * pnpm update * Update sites/svelte.dev/src/routes/examples/[slug]/+page.svelte Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> * Update sites/svelte.dev/package.json Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> --------- Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com> --------- Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
24 lines
578 B
Markdown
24 lines
578 B
Markdown
---
|
|
title: <svelte:element>
|
|
---
|
|
|
|
Sometimes we don't know in advance what kind of DOM element to render. `<svelte:element>` comes in handy here. Instead of a sequence of `if` blocks...
|
|
|
|
```svelte
|
|
{#if selected === 'h1'}
|
|
<h1>I'm a h1 tag</h1>
|
|
{:else if selected === 'h3'}
|
|
<h3>I'm a h3 tag</h3>
|
|
{:else if selected === 'p'}
|
|
<p>I'm a p tag</p>
|
|
{/if}
|
|
```
|
|
|
|
...we can have a single dynamic component:
|
|
|
|
```svelte
|
|
<svelte:element this={selected}>I'm a {selected} tag</svelte:element>
|
|
```
|
|
|
|
The `this` value can be any string, or a falsy value — if it's falsy, no element is rendered.
|