From fe750d2606aa6203d394322f5d86c9da552be50e Mon Sep 17 00:00:00 2001 From: Thomas Ferro Date: Thu, 2 Jan 2020 16:08:15 +0100 Subject: [PATCH] Doc (#4172): Fixing the unclear slot with fallback content example --- site/content/docs/02-template-syntax.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index 89506753d6..b069c8abc0 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -1202,14 +1202,16 @@ The content is exposed in the child component using the `` element, which ```html + + -

this is some child content

+

this is some child content that will overwrite the default slot content

- this will be rendered if someone does + this fallback content will be rendered when no content is provided, like in the first example
```