From bb617e12870e7aae224b3ee2da49b23773d6459a Mon Sep 17 00:00:00 2001 From: harrywan Date: Wed, 23 Oct 2024 18:54:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8E=BB=E6=8E=89=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-locale/src/index.js | 5 ----- packages/fes-template/src/app.jsx | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/fes-plugin-locale/src/index.js b/packages/fes-plugin-locale/src/index.js index 2aea0411..0a80c79e 100644 --- a/packages/fes-plugin-locale/src/index.js +++ b/packages/fes-plugin-locale/src/index.js @@ -64,9 +64,6 @@ export default (api) => { const { baseNavigator, ...otherConfig } = userConfig; - const title = api.config.title || 'fes.js'; - const isLocaleTitle = title.startsWith('$'); - api.writeTmpFile({ path: join(namespace, 'locales.js'), content: Mustache.render(readFileSync(join(__dirname, 'runtime/locales.js.tpl'), 'utf-8'), { @@ -84,8 +81,6 @@ export default (api) => { REPLACE_DEFAULT_OPTIONS: JSON.stringify(otherConfig, null, 2), BASE_NAVIGATOR: baseNavigator, VUE_I18N_PATH: 'vue-i18n', - TITLE: title.slice(1), - IS_LOCALE_TITle: isLocaleTitle, }), }); diff --git a/packages/fes-template/src/app.jsx b/packages/fes-template/src/app.jsx index 5407043a..05e67a6d 100644 --- a/packages/fes-template/src/app.jsx +++ b/packages/fes-template/src/app.jsx @@ -3,9 +3,9 @@ import { ref, watch } from 'vue'; import PageLoading from '@/components/pageLoading.vue'; import UserCenter from '@/components/userCenter.vue'; -export function onLocaleChange({ locale }) { +export function onLocaleChange({ locale, t }) { // 切换语言 - console.log(locale); + console.log(locale, t); } export const beforeRender = {