新增前端vue
This commit is contained in:
45
web-vue/packages/core/locales/setupI18n.ts
Normal file
45
web-vue/packages/core/locales/setupI18n.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
import type { App } from 'vue';
|
||||
import type { I18nOptions } from 'vue-i18n';
|
||||
|
||||
import { createI18n } from 'vue-i18n';
|
||||
import { setHtmlPageLang, setLoadLocalePool } from './helper';
|
||||
import { localeSetting } from '@jeesite/core/settings/localeSetting';
|
||||
import { useLocaleStoreWithOut } from '@jeesite/core/store/modules/locale';
|
||||
|
||||
const { fallback, availableLocales } = localeSetting;
|
||||
|
||||
export let i18n: ReturnType<typeof createI18n>;
|
||||
|
||||
async function createI18nOptions(): Promise<I18nOptions> {
|
||||
const localeStore = useLocaleStoreWithOut();
|
||||
const locale = localeStore.getLocale;
|
||||
const defaultLocal = await import(`./lang/${locale}.ts`);
|
||||
const message = defaultLocal.default?.message ?? {};
|
||||
|
||||
setHtmlPageLang(locale);
|
||||
setLoadLocalePool((loadLocalePool) => {
|
||||
loadLocalePool.push(locale);
|
||||
});
|
||||
|
||||
return {
|
||||
legacy: false,
|
||||
locale,
|
||||
fallbackLocale: fallback,
|
||||
messages: {
|
||||
[locale]: message,
|
||||
},
|
||||
availableLocales: availableLocales,
|
||||
sync: true, // If you don’t want to inherit locale from global scope, you need to set sync of i18n component option to false.
|
||||
silentTranslationWarn: false, // true - warning off
|
||||
missingWarn: false,
|
||||
silentFallbackWarn: false,
|
||||
fallbackWarn: false,
|
||||
};
|
||||
}
|
||||
|
||||
// setup i18n instance with glob
|
||||
export async function setupI18n(app: App) {
|
||||
const options = await createI18nOptions();
|
||||
i18n = createI18n(options);
|
||||
app.use(i18n);
|
||||
}
|
||||
Reference in New Issue
Block a user