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 @@ - home + {{ t('home') }} Button