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

View File

@ -329,3 +329,21 @@ declare namespace Message {
tagProps?: import('naive-ui').TagProps;
}
}
declare namespace I18nType {
interface Schema {
system: {
title: string;
};
routes: {
dashboard: {
dashboard: string;
analysis: string;
workbench: string;
};
about: {
about: string;
};
};
}
}