From 0a64739a2252976db3bad930c2bdfbe8843ceeb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=AC=E6=B5=B7?= <445436867@qq.com> Date: Wed, 21 Sep 2022 20:15:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DSelectLang.vue?= =?UTF-8?q?=E7=9A=84=E5=BE=AA=E7=8E=AF=E4=BE=9D=E8=B5=96=E9=97=AE=E9=A2=98?= =?UTF-8?q?=20(#148)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-plugin-locale/src/runtime/core.tpl | 5 +---- packages/fes-plugin-locale/src/runtime/runtime.js | 8 +++++++- packages/fes-template-vite/src/locales/en-US.js | 3 +-- packages/fes-template-vite/src/pages/index.vue | 5 ++++- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/packages/fes-plugin-locale/src/runtime/core.tpl b/packages/fes-plugin-locale/src/runtime/core.tpl index 7f712c33..0e4b6f26 100644 --- a/packages/fes-plugin-locale/src/runtime/core.tpl +++ b/packages/fes-plugin-locale/src/runtime/core.tpl @@ -8,14 +8,11 @@ import { isRef, unref } from 'vue'; import { createI18n, useI18n } from '{{{ VUE_I18N_PATH }}}'; import { plugin, ApplyPluginsType } from "@@/core/coreExports"; -import SelectLang from "./views/SelectLang.vue"; + {{#REPLACE_LOCALES}} import {{importName}} from "{{{path}}}"; {{/REPLACE_LOCALES}} -// 共享出去 -plugin.share("locale", {useI18n, SelectLang }); - const locales = [ {{#REPLACE_LOCALES}} { diff --git a/packages/fes-plugin-locale/src/runtime/runtime.js b/packages/fes-plugin-locale/src/runtime/runtime.js index c9a39e3c..c642d7e7 100644 --- a/packages/fes-plugin-locale/src/runtime/runtime.js +++ b/packages/fes-plugin-locale/src/runtime/runtime.js @@ -1,4 +1,10 @@ -import { install } from './core'; +import { plugin } from '@@/core/coreExports'; +// eslint-disable-next-line import/extensions +import { useI18n, install } from './core'; +import SelectLang from './views/SelectLang.vue'; + +// 共享出去 +plugin.share('locale', { useI18n, SelectLang }); export function onAppCreated({ app }) { install(app); diff --git a/packages/fes-template-vite/src/locales/en-US.js b/packages/fes-template-vite/src/locales/en-US.js index e3efe619..a7a36a7c 100644 --- a/packages/fes-template-vite/src/locales/en-US.js +++ b/packages/fes-template-vite/src/locales/en-US.js @@ -1,8 +1,7 @@ - export default { home: 'home', store: 'store', editor: 'editor', externalLink: 'externalLink', - mock: 'mock' + mock: 'mock', }; diff --git a/packages/fes-template-vite/src/pages/index.vue b/packages/fes-template-vite/src/pages/index.vue index 518ebf56..30e02cd0 100644 --- a/packages/fes-template-vite/src/pages/index.vue +++ b/packages/fes-template-vite/src/pages/index.vue @@ -1,12 +1,13 @@