mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
0e4a111f81
Resolve #7779
14 lines
394 B
TypeScript
14 lines
394 B
TypeScript
import { markRaw } from 'vue';
|
|
import { locale } from '@/config';
|
|
import { I18n } from '@/scripts/i18n';
|
|
|
|
export const i18n = markRaw(new I18n(locale));
|
|
|
|
// このファイルに書きたくないけどここに書かないと何故かVeturが認識しない
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$t: typeof i18n['t'];
|
|
$ts: typeof i18n['locale'];
|
|
}
|
|
}
|