* refactor: add i18n dynamic typings * chore: tweak
This commit is contained in:

committed by
GitHub

parent
38a1d6693a
commit
62fe3bfb54
@@ -1,8 +1,9 @@
|
||||
import { markRaw } from 'vue';
|
||||
import type { Locale } from '../../../locales';
|
||||
import { locale } from '@/config';
|
||||
import { I18n } from '@/scripts/i18n';
|
||||
|
||||
export const i18n = markRaw(new I18n(locale));
|
||||
export const i18n = markRaw(new I18n<Locale>(locale));
|
||||
|
||||
export function updateI18n(newLocale) {
|
||||
i18n.ts = newLocale;
|
||||
|
Reference in New Issue
Block a user