Skip to content

Commit a099962

Browse files
committed
add templates
1 parent bc2d30c commit a099962

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

documentation/docs/02-template-syntax/04-snippets.md

+26
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,32 @@ Snippets can reference themselves and each other ([demo](/#H4sIAAAAAAAAE2WPTQqDM
114114

115115
## Passing snippets to components
116116

117+
```svelte
118+
<Component>...</Component> <!-- uses the children prop -->
119+
```
120+
121+
```svelte
122+
<Component>
123+
{#snippet children()}...{/snippet}
124+
{#snippet foo()}...{/snippet}
125+
</Component>
126+
```
127+
128+
```svelte
129+
{#snippet children()}...{/snippet}
130+
{#snippet foo()}...{/snippet}
131+
<Component {children} {foo}/>
132+
```
133+
134+
```svelte
135+
/// file: Component.svelte
136+
<script>
137+
let { children, foo } = $props();
138+
</script>
139+
{@render children()}
140+
{@render foo()}
141+
```
142+
117143
Within the template, snippets are values just like any other. As such, they can be passed to components as props ([demo](/#H4sIAAAAAAAAE41SwY6bMBD9lRGplKQlYRMpF5ZF7T_0ttmDwSZYJbZrT9pGlv-9g4Fkk-xhxYV5vHlvhjc-aWQnXJK_-kSxo0jy5IcxSZrg2fSF-yM6FFQ7fbJ1jxSuttJguVd7lEejLcJPVnUCGquPMF9nsVoPjfNnohGx1sohMU4SHbzAa4_t0UNvmcOcGUNDzFP4jeccdikYK2v6sIWQ3lErpui5cDdPF_LmkVy3wlp5Vd5e2U_rHYSe_kYjFtl1KeVnTkljBEIrGBd2sYy8AtsyLlBk9DYhJHtTR_UbBDWybkR8NkqHWyOr_y74ZMNLz9f9AoG6ePkOJLMHLBp-xISvcPf11r0YUuMM2Ysfkgngh5XphUYKkJWU_FFz2UjBkxztSYT0cihR4LOn0tGaPrql439N-7Uh0Dl8MVYbt1jeJ1Fg7xDb_Uw2Y18YQqZ_S2U5FH1pS__dCkWMa3C0uR0pfQRTg89kE4bLLLDS_Dxy_Eywuo1TAnPAw4fqY1rvtH3W9w35ZZMgvU3jq8LhedwkguCHRhT_cMU6eVA5dKLB5wGutCWjlTOslupAxxrxceKoD2hzhe2qbmXHF1v1bbOcNCtW_zpYfVI8h5kQ4qY3mueHTlesW2C7TOEO4hcdwzgf3Nc7cZxUKKC4yuNhvIX_MlV_Xk0EAAA=)):
118144

119145
```svelte

0 commit comments

Comments
 (0)