vue-vben-admin/src/setup/i18n/index.ts

35 lines
989 B
TypeScript
Raw Normal View History

2020-11-26 21:10:21 +08:00
import { App } from 'vue';
2020-11-23 00:35:15 +08:00
import type { I18n, I18nOptions } from 'vue-i18n';
import { createI18n } from 'vue-i18n';
import localeMessages from '/@/locales';
import { useLocale } from '/@/hooks/web/useLocale';
2020-11-26 21:10:21 +08:00
import projectSetting from '/@/settings/projectSetting';
2020-11-23 00:35:15 +08:00
const { setupLocale } = useLocale();
2020-11-26 21:10:21 +08:00
const { lang, availableLocales, fallback } = projectSetting?.locale;
const localeData: I18nOptions = {
legacy: false,
2020-11-26 21:10:21 +08:00
locale: lang,
fallbackLocale: fallback,
messages: localeMessages,
2020-11-26 21:10:21 +08:00
availableLocales: availableLocales,
sync: true, //If you dont want to inherit locale from global scope, you need to set sync of i18n component option to false.
silentTranslationWarn: true, // true - warning off
missingWarn: false,
silentFallbackWarn: true,
};
let i18n: I18n;
// setup i18n instance with glob
export function setupI18n(app: App) {
i18n = createI18n(localeData) as I18n;
2020-11-23 00:35:15 +08:00
setupLocale();
app.use(i18n);
}
2020-11-23 00:35:15 +08:00
export function getI18n(): I18n {
return i18n;
}