Skip to content

Commit

Permalink
fix: typo in reactivity-fundamentals.md (#3118)
Browse files Browse the repository at this point in the history
  • Loading branch information
santiph authored Dec 9, 2024
1 parent c71433f commit fe96839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/essentials/reactivity-fundamentals.md
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ Due to these limitations, we recommend using `ref()` as the primary API for decl

### As Reactive Object Property \*\* {#ref-unwrapping-as-reactive-object-property}

A ref is automatically unwrapped when accessed or mutated as a property of a reactive object. In other words, it behaves like a normal property :
A ref is automatically unwrapped when accessed or mutated as a property of a reactive object. In other words, it behaves like a normal property:

```js
const count = ref(0)
Expand Down

0 comments on commit fe96839

Please sign in to comment.