This commit is contained in:
sexygoat
2026-03-31 18:41:52 +08:00
commit 3c62cc1cd1
527 changed files with 96725 additions and 0 deletions

8
types/i18n.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
export {};
declare module 'vue' {
interface ComponentCustomProperties {
$t: (key: string, opt?: Record<string, any>) => string;
$tm: (key: string, opt?: Record<string, any>) => [] | { [p: string]: any };
}
}