From e181f04c642204e79749af93fa921875ff6c21ba Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期二, 20 五月 2025 10:46:35 +0800 Subject: [PATCH] refactor(qms): 重构趋势图展示逻辑 --- src/lang/index.ts | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/lang/index.ts b/src/lang/index.ts index 2b4c027..4f8e74c 100644 --- a/src/lang/index.ts +++ b/src/lang/index.ts @@ -2,7 +2,8 @@ import { createI18n } from 'vue-i18n'; import { LanguageEnum } from '@/enums/LanguageEnum'; -import messages from '@intlify/unplugin-vue-i18n/messages'; +import zh_CN from '@/lang/zh_CN'; +import en_US from '@/lang/en_US'; /** * 鑾峰彇褰撳墠璇█ @@ -18,9 +19,15 @@ const i18n = createI18n({ globalInjection: true, + allowComposition: true, legacy: false, locale: getLanguage(), - messages + messages: { + zh_CN: zh_CN, + en_US: en_US + } }); export default i18n; + +export type LanguageType = typeof zh_CN; -- Gitblit v1.9.3