From 4674900e6403d546a7543eacff3b7c5321a3b00f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E5=85=8B=E6=88=90?= Date: Mon, 20 Feb 2023 02:10:11 +0800 Subject: [PATCH] docs(zh): fix code fence (#2012) --- 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 45efbb1004..344fd4c729 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