Init commit.

This commit is contained in:
sleepwithoutbz
2025-11-10 00:45:30 +08:00
commit de451f2aab
60 changed files with 15847 additions and 0 deletions

11
shims-vue-i18n.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
// src/shims-vue-i18n.d.ts
import { I18n } from 'vue-i18n'
// Augment the ComponentCustomProperties interface in 'vue'
declare module '@vue/runtime-core' {
interface ComponentCustomProperties {
// Defines the $t property and its type
$t: I18n['global']['t']
}
}