From: Eduardo San Martin Morote Date: Thu, 12 Jun 2025 14:38:39 +0000 (+0200) Subject: docs: link X-Git-Tag: @pinia/nuxt@0.11.2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f354c245bb30a5cca0009ec100a5ace2640cb437;p=thirdparty%2Fvuejs%2Fpinia.git docs: link Close #2990 --- diff --git a/packages/docs/zh/core-concepts/index.md b/packages/docs/zh/core-concepts/index.md index 44fe57ba..12960e68 100644 --- a/packages/docs/zh/core-concepts/index.md +++ b/packages/docs/zh/core-concepts/index.md @@ -135,7 +135,7 @@ import { computed } from 'vue' const store = useCounterStore() // ❌ 下面这部分代码不会生效,因为它的响应式被破坏了 -// 它和解构 `props` 的操作是一样的 +// 与 reactive 相同: https://vuejs.org/guide/essentials/reactivity-fundamentals.html#limitations-of-reactive const { name, doubleCount } = store // [!code warning] name // 将会一直是 "Eduardo" // [!code warning] doubleCount // 将会一直是 0 // [!code warning]