Skip to content

Commit 81bf41c

Browse files
authored
fix: small typo (#1629)
1 parent ddda91c commit 81bf41c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/essentials/reactivity-fundamentals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ The following expression will **NOT** work as expected:
465465
{{ object.foo + 1 }}
466466
```
467467

468-
The rendered result will be `[object Object]1` because `object.foo` is a ref object. We can fix that by making `foo` a top-level property:
468+
The rendered result will be `[object Object]` because `object.foo` is a ref object. We can fix that by making `foo` a top-level property:
469469

470470
```js
471471
const { foo } = object

0 commit comments

Comments
 (0)