vben
2021-11-10 3fcfac1f37c2aeabbb2af4897ada6ba8c225c667
src/locales/useLocale.ts
@@ -3,8 +3,6 @@
 */
import type { LocaleType } from '/#/config';
import moment from 'moment';
import { i18n } from './setupI18n';
import { useLocaleStoreWithOut } from '/@/store/modules/locale';
import { unref, computed } from 'vue';
@@ -12,8 +10,8 @@
interface LangModule {
  message: Recordable;
  momentLocale: Recordable;
  momentLocaleName: string;
  dateLocale: Recordable;
  dateLocaleName: string;
}
function setI18nLanguage(locale: LocaleType) {
@@ -53,10 +51,9 @@
    const langModule = ((await import(`./lang/${locale}.ts`)) as any).default as LangModule;
    if (!langModule) return;
    const { message, momentLocale, momentLocaleName } = langModule;
    const { message } = langModule;
    globalI18n.setLocaleMessage(locale, message);
    moment.updateLocale(momentLocaleName, momentLocale);
    loadLocalePool.push(locale);
    setI18nLanguage(locale);