We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddda91c commit 81bf41cCopy full SHA for 81bf41c
src/guide/essentials/reactivity-fundamentals.md
@@ -465,7 +465,7 @@ The following expression will **NOT** work as expected:
465
{{ object.foo + 1 }}
466
```
467
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:
+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:
469
470
```js
471
const { foo } = object
0 commit comments