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

35 lines
1.0 KiB
TypeScript
Raw Normal View History

2020-11-23 00:35:15 +08:00
import { App, unref } from 'vue';
import type { I18n, I18nOptions } from 'vue-i18n';
import { createI18n } from 'vue-i18n';
import localeMessages from '/@/locales';
import { useLocale } from '/@/hooks/web/useLocale';
2020-11-23 00:35:15 +08:00
import { useLocaleSetting } from '/@/settings/use/useLocaleSetting';
2020-11-23 00:35:15 +08:00
const { setupLocale } = useLocale();
2020-11-23 00:35:15 +08:00
const { getLang, getAvailableLocales, getFallbackLocale } = useLocaleSetting();
const localeData: I18nOptions = {
legacy: false,
2020-11-23 00:35:15 +08:00
locale: unref(getLang),
fallbackLocale: unref(getFallbackLocale),
messages: localeMessages,
2020-11-23 00:35:15 +08:00
availableLocales: unref(getAvailableLocales),
sync: true, //If you dont want to inherit locale from global scope, you need to set sync of i18n component option to false.
silentTranslationWarn: false, // true - warning off
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;
}