fix: 修复SelectLang.vue的循环依赖问题 (#148)

This commit is contained in:
听海 2022-09-21 20:15:51 +08:00 committed by GitHub
parent f74143bc69
commit 89916573bf
4 changed files with 13 additions and 8 deletions

View File

@ -8,14 +8,11 @@
import { isRef, unref } from 'vue'; import { isRef, unref } from 'vue';
import { createI18n, useI18n } from '{{{ VUE_I18N_PATH }}}'; import { createI18n, useI18n } from '{{{ VUE_I18N_PATH }}}';
import { plugin, ApplyPluginsType } from "@@/core/coreExports"; import { plugin, ApplyPluginsType } from "@@/core/coreExports";
import SelectLang from "./views/SelectLang.vue";
{{#REPLACE_LOCALES}} {{#REPLACE_LOCALES}}
import {{importName}} from "{{{path}}}"; import {{importName}} from "{{{path}}}";
{{/REPLACE_LOCALES}} {{/REPLACE_LOCALES}}
// 共享出去
plugin.share("locale", {useI18n, SelectLang });
const locales = [ const locales = [
{{#REPLACE_LOCALES}} {{#REPLACE_LOCALES}}
{ {

View File

@ -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 }) { export function onAppCreated({ app }) {
install(app); install(app);

View File

@ -1,8 +1,7 @@
export default { export default {
home: 'home', home: 'home',
store: 'store', store: 'store',
editor: 'editor', editor: 'editor',
externalLink: 'externalLink', externalLink: 'externalLink',
mock: 'mock' mock: 'mock',
}; };

View File

@ -1,12 +1,13 @@
<template> <template>
<div class="page"> <div class="page">
home {{ t('home') }}
<fes-icon type="smile" /> <fes-icon type="smile" />
<FButton class="m-2">Button</FButton> <FButton class="m-2">Button</FButton>
</div> </div>
</template> </template>
<script> <script>
import { useI18n } from '@fesjs/fes';
import { FButton } from '@fesjs/fes-design'; import { FButton } from '@fesjs/fes-design';
export default { export default {
@ -14,9 +15,11 @@ export default {
FButton, FButton,
}, },
setup() { setup() {
const { t } = useI18n();
const a = 'aa'.replaceAll('a', 1); const a = 'aa'.replaceAll('a', 1);
return { return {
a, a,
t,
}; };
}, },
}; };