Skip to content

Commit

Permalink
docs: translate remark in /guide/best-practices/performance (#925)
Browse files Browse the repository at this point in the history
Co-authored-by: GU Yiling <[email protected]>
  • Loading branch information
xiaodong2008 and Justineo committed Apr 27, 2024
1 parent add4637 commit f2270e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/best-practices/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const isEven = computed(() => count.value % 2 === 0)

watchEffect(() => console.log(isEven.value)) // true

// will not trigger new logs because the computed value stays `true`
// 这将不会触发新的输出,因为计算属性的值依然为 `true`
count.value = 2
count.value = 4
```
Expand Down

0 comments on commit f2270e1

Please sign in to comment.