From c482cb8a9bc75014156b671cef4a20372b837d9d Mon Sep 17 00:00:00 2001 From: dy-xiaodong2022 Date: Fri, 26 Apr 2024 14:20:13 +0800 Subject: [PATCH] docs: fix lint error --- src/tutorial/src/step-9/description.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tutorial/src/step-9/description.md b/src/tutorial/src/step-9/description.md index e085bca7..1759ec8e 100644 --- a/src/tutorial/src/step-9/description.md +++ b/src/tutorial/src/step-9/description.md @@ -2,7 +2,7 @@ 目前為止,Vue 為我們處理了所有的 DOM 更新,這要歸功於響應性和聲明式渲染。然而,有時我們也會不可避免地需要手動操作 DOM。 -這時我們需要使用**模板引用**——也就是指向模板中一個 DOM 元素的 ref。我們需要通過這個特殊的 `ref` 屬性 來實現模板引用: +這時我們需要使用**模板引用**——也就是指向模板中一個 DOM 元素的 ref。我們需要通過這個特殊的 `ref` 屬性來實現模板引用: ```vue-html

hello