From 7867b8aaf0e72b8220b59fae4407e5c8f88c8eb0 Mon Sep 17 00:00:00 2001 From: thinkasany <480968828@qq.com> Date: Thu, 24 Oct 2024 17:54:31 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20replace=20'=E6=A7=BD'=20with=20?= =?UTF-8?q?=E2=80=98=E6=8F=92=E6=A7=BD=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/guide/built-ins/suspense.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/built-ins/suspense.md b/src/guide/built-ins/suspense.md index 47f54192a..c698dddc7 100644 --- a/src/guide/built-ins/suspense.md +++ b/src/guide/built-ins/suspense.md @@ -71,7 +71,7 @@ const posts = await res.json() ## 加载中状态 {#loading-state} -`` 组件有两个插槽:`#default` 和 `#fallback`。两个插槽都只允许**一个**直接子节点。在可能的时候都将显示默认槽中的节点。否则将显示后备槽中的节点。 +`` 组件有两个插槽:`#default` 和 `#fallback`。两个插槽都只允许**一个**直接子节点。在可能的时候都将显示默认插槽中的节点。否则将显示后备插槽中的节点。 ```vue-html