refactor(router): 重命名路由插件文件并更新类型定义
Some checks failed
CI/CD Pipeline / playwright (push) Successful in 2m6s
CI/CD Pipeline / build-and-deploy (push) Has been cancelled

This commit is contained in:
严浩
2025-10-23 23:27:10 +08:00
parent f222641f00
commit 063fb2641c
10 changed files with 16 additions and 10 deletions

View File

@@ -1,5 +1,3 @@
import type { RouteLocalizationFlags } from '@/plugins/router-plugin';
export default {
Root: 'Index',
$Path: '$Path',
@@ -9,4 +7,4 @@ export default {
DemosI18nDemo: 'i18n Demo',
DemosWebsocketDemo: 'WebSocket Demo',
Home: 'Home',
} satisfies RouteLocalizationFlags;
} satisfies PageTitleLocalizations;

View File

@@ -1,5 +1,3 @@
import type { RouteLocalizationFlags } from '@/plugins/router-plugin';
export default {
Root: '根 (Gēn)',
$Path: '$Path',
@@ -9,4 +7,4 @@ export default {
DemosI18nDemo: '国际化示例',
DemosWebsocketDemo: 'WebSocket 示例',
Home: '首页',
} satisfies RouteLocalizationFlags;
} satisfies PageTitleLocalizations;