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 1aae45f commit f354c24Copy full SHA for f354c24
packages/docs/zh/core-concepts/index.md
@@ -135,7 +135,7 @@ import { computed } from 'vue'
135
136
const store = useCounterStore()
137
// ❌ 下面这部分代码不会生效,因为它的响应式被破坏了
138
-// 它和解构 `props` 的操作是一样的
+// 与 reactive 相同: https://vuejs.org/guide/essentials/reactivity-fundamentals.html#limitations-of-reactive
139
const { name, doubleCount } = store // [!code warning]
140
name // 将会一直是 "Eduardo" // [!code warning]
141
doubleCount // 将会一直是 0 // [!code warning]
0 commit comments