From 11d4e68d6098f4144efd80bc6fbbe4374975e070 Mon Sep 17 00:00:00 2001 From: harrywan Date: Tue, 27 Aug 2024 19:42:55 +0800 Subject: [PATCH] =?UTF-8?q?fix(plugin-locale):=E4=BF=AE=E5=A4=8D=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E5=87=BD=E6=95=B0t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-locale/src/runtime/core.js.tpl | 4 +--- packages/fes-plugin-locale/types.d.ts | 3 +++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/fes-plugin-locale/src/runtime/core.js.tpl b/packages/fes-plugin-locale/src/runtime/core.js.tpl index 42fd1708..5e662d9d 100644 --- a/packages/fes-plugin-locale/src/runtime/core.js.tpl +++ b/packages/fes-plugin-locale/src/runtime/core.js.tpl @@ -80,9 +80,7 @@ const install = (app) => { app.use(i18n); }; -const t = (key) => { - return i18n.global.t(key) -} +const t = i18n.global.t; const locale = { setLocale, diff --git a/packages/fes-plugin-locale/types.d.ts b/packages/fes-plugin-locale/types.d.ts index b72dc316..62b4917c 100644 --- a/packages/fes-plugin-locale/types.d.ts +++ b/packages/fes-plugin-locale/types.d.ts @@ -1,3 +1,5 @@ +import type { VueI18n } from 'vue-i18n'; + export { useI18n } from 'vue-i18n'; export const locale: { @@ -5,6 +7,7 @@ export const locale: { addLocale: ({ locale, messages }: { locale: string; messages: object }) => void; getAllLocales: () => string[]; messages: Record; + t: VueI18n['t']; }; declare module '@fesjs/fes' {