From: 谢克成 Date: Sun, 19 Feb 2023 18:10:11 +0000 (+0800) Subject: docs(zh): fix code fence (#2012) X-Git-Tag: @pinia/nuxt@0.4.7~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4674900e6403d546a7543eacff3b7c5321a3b00f;p=thirdparty%2Fvuejs%2Fpinia.git docs(zh): fix code fence (#2012) --- diff --git a/packages/docs/zh/core-concepts/index.md b/packages/docs/zh/core-concepts/index.md index 45efbb10..344fd4c7 100644 --- a/packages/docs/zh/core-concepts/index.md +++ b/packages/docs/zh/core-concepts/index.md @@ -109,7 +109,7 @@ const doubleValue = computed(() => store.doubleCount) 为了从 store 中提取属性时保持其响应性,你需要使用 `storeToRefs()`。它将为每一个响应式属性创建引用。当你只使用 store 的状态而不调用任何 action 时,它会非常有用。请注意,你可以直接从 store 中解构 action,因为它们也被绑定到 store 上: -````vue +```vue