From f354c245bb30a5cca0009ec100a5ace2640cb437 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Thu, 12 Jun 2025 16:38:39 +0200 Subject: [PATCH] docs: link Close #2990 --- packages/docs/zh/core-concepts/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- 2.47.3