parent
037837b551
commit
0e4a111f81
1714 changed files with 20803 additions and 11751 deletions
13
packages/client/src/i18n.ts
Normal file
13
packages/client/src/i18n.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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'];
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue