Skip to content

Commit 7662f5f

Browse files
fix: fixed typo on reactivity section
1 parent a97eb0f commit 7662f5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/reactivity-fundamentals.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const book = reactive({
124124
let { author, title } = book
125125
```
126126

127-
Unfortunately, with such a destructuring the reactivity for both properties would be lost. For such case, we need to convert our reactive object to a set of `refs`. These refs will retaining the reactive connection to the source object:
127+
Unfortunately, with such a destructuring the reactivity for both properties would be lost. For such a case, we need to convert our reactive object to a set of refs. These refs will retain the reactive connection to the source object:
128128

129129
```js
130130
import { reactive, toRefs } from 'vue'

0 commit comments

Comments
 (0)