From 41c20a43aff4d0b3c795c358241fd1a588e45996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=86=E4=BC=AF=E8=A8=80?= Date: Sun, 19 Jul 2026 01:22:00 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=AD=A3=E8=AF=AD=E8=A8=80?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E7=A4=BA=E4=BE=8B,=E7=A1=AE=E4=BF=9D?= =?UTF-8?q?=E5=8F=AF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 使用可用的语言配置 修复computed变量使用语法错误 closed #8159 --- docs/src/en/guide/in-depth/locale.md | 6 +++--- docs/src/guide/in-depth/locale.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/src/en/guide/in-depth/locale.md b/docs/src/en/guide/in-depth/locale.md index b46716d9..ee46901a 100644 --- a/docs/src/en/guide/in-depth/locale.md +++ b/docs/src/en/guide/in-depth/locale.md @@ -89,11 +89,11 @@ With `@vben/locales`, you can easily use translation texts: import { computed } from 'vue'; import { $t } from '@vben/locales'; -const items = computed(() => [{ title: $t('about.desc') }]); +const items = computed(() => [{ title: $t('demos.title') }]);