mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 修复SelectLang.vue的循环依赖问题 (#148)
This commit is contained in:
parent
fefbdc9b9e
commit
0a64739a22
@ -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}}
|
||||||
{
|
{
|
||||||
|
@ -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);
|
||||||
|
@ -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',
|
||||||
};
|
};
|
||||||
|
@ -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,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user