Feature: 创建项目 & 导航栏动画 & i18n国际化支持

This commit is contained in:
2025-07-05 15:46:25 +08:00
commit dab57fbadf
73 changed files with 7326 additions and 0 deletions

13
src/plugins/i18n.ts Normal file
View File

@ -0,0 +1,13 @@
import { createI18n } from 'vue-i18n'
import en from '@/locale/en.json'
import zh from '@/locale/zh.json'
export default createI18n({
legacy: false,
locale: 'zh',
fallbackLocale: 'en',
messages: {
zh,
en,
},
})