Skip to content

Commit

Permalink
docs(useClone): correct the output (#3697)
Browse files Browse the repository at this point in the history
  • Loading branch information
heartz66 committed Jan 9, 2024
1 parent 4e830c4 commit 2171098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/useCloned/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const { cloned } = useCloned(original)

original.value.key = 'some new value'

console.log(cloned.value.key) // 'some new value'
console.log(cloned.value.key) // 'value'
```

## Manual cloning
Expand Down

0 comments on commit 2171098

Please sign in to comment.