Skip to content
This repository was archived by the owner on Aug 8, 2022. It is now read-only.

Commit 963f279

Browse files
Geekhyt霍怡童
andauthored
fix: typos (#122)
* fix: typos Co-authored-by: 霍怡童 <huoyt@csdn.net>
1 parent 4aa90c9 commit 963f279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/guide/reactivity-fundamentals.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { ref } from 'vue'
3131
const count = ref(0)
3232
```
3333

34-
`ref` 会返回一个可变的响应式对象,该对象作为它的内部值——一个**响应式的引用**,这就是名称的来源。此对象只包含一个名为 `value` 的 property`
34+
`ref` 会返回一个可变的响应式对象,该对象作为它的内部值——一个**响应式的引用**,这就是名称的来源。此对象只包含一个名为 `value` 的 property :
3535

3636
```js
3737
import { ref } from 'vue'
@@ -143,7 +143,7 @@ title.value = 'Vue 3 Detailed Guide' // 我们需要使用 .value 作为标题
143143
console.log(book.title) // 'Vue 3 Detailed Guide'
144144
```
145145

146-
你可以在 [Refs API](../api/refs-api.html#ref) 部分中了解更多有关 `refs' 的信息
146+
你可以在 [Refs API](../api/refs-api.html#ref) 部分中了解更多有关 `refs` 的信息
147147

148148
## 使用 `readonly` 防止更改响应式对象
149149

0 commit comments

Comments
 (0)