From 151908668dc6a8d169bd5911181e75a58f4f05f0 Mon Sep 17 00:00:00 2001 From: ajycc20 <1029888273@qq.com> Date: Sun, 20 Sep 2020 12:44:25 +0800 Subject: [PATCH] fix: closed span tags --- src/guide/component-slots.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/guide/component-slots.md b/src/guide/component-slots.md index 5366623104..777c3b6008 100644 --- a/src/guide/component-slots.md +++ b/src/guide/component-slots.md @@ -274,7 +274,7 @@ Attributes bound to a `` element are called **slot props**. Now, in the pa ``` @@ -290,7 +290,7 @@ In cases like above, when _only_ the default slot is provided content, the compo ```html - {{ slotProps.item }} + {{ slotProps.item }} ``` @@ -299,7 +299,7 @@ This can be shortened even further. Just as non-specified content is assumed to ```html - {{ slotProps.item }} + {{ slotProps.item }} ``` @@ -310,7 +310,7 @@ Note that the abbreviated syntax for default slot **cannot** be mixed with named - {{ slotProps.item }} + {{ slotProps.item }}