feat(projects): import i18n [引入i18n]

This commit is contained in:
Soybean
2022-10-12 01:03:14 +08:00
parent 1b45b71f20
commit b632b7ffed
10 changed files with 164 additions and 4 deletions

21
src/locales/lang/en.ts Normal file
View File

@ -0,0 +1,21 @@
import type { LocaleMessages } from 'vue-i18n';
const locale: LocaleMessages<I18nType.Schema> = {
message: {
system: {
title: 'SoybeanAdmin'
},
routes: {
dashboard: {
dashboard: 'Dashboard',
analysis: 'Analysis',
workbench: 'Workbench'
},
about: {
about: 'About'
}
}
}
};
export default locale;