feat: init

This commit is contained in:
2026-01-16 13:01:40 +07:00
commit 5b6477559f
34 changed files with 13714 additions and 0 deletions

15
src/locales/index.ts Normal file
View File

@@ -0,0 +1,15 @@
import { createI18n } from "vue-i18n";
import zhCN from "./zh-CN.json";
export type MessageSchema = typeof zhCN;
const i18n = createI18n<MessageSchema, "zh-CN">({
legacy: false,
locale: "zh-CN",
fallbackLocale: "zh-CN",
messages: {
"zh-CN": zhCN,
},
});
export { i18n };