From 694b1bd7e4c787953913fdb810f67f4581321b2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=A5=E6=B5=A9?= Date: Wed, 9 Oct 2024 18:24:07 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20AA=20=E8=B7=AF?= =?UTF-8?q?=E7=94=B1=E5=92=8C=E5=AF=B9=E5=BA=94=E7=9A=84=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/a/a.vue | 7 +++++++ typed-router.d.ts | 1 + 2 files changed, 8 insertions(+) create mode 100644 src/pages/a/a.vue diff --git a/src/pages/a/a.vue b/src/pages/a/a.vue new file mode 100644 index 0000000..65d4959 --- /dev/null +++ b/src/pages/a/a.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/typed-router.d.ts b/typed-router.d.ts index c3e127b..45be021 100644 --- a/typed-router.d.ts +++ b/typed-router.d.ts @@ -19,6 +19,7 @@ declare module 'vue-router/auto-routes' { */ export interface RouteNamedMap { '中文页面': RouteRecordInfo<'中文页面', '/中文-页面', Record, Record>, + 'AA': RouteRecordInfo<'AA', '/a/a', Record, Record>, 'Api': RouteRecordInfo<'Api', '/api', Record, Record>, 'DataLoadersId': RouteRecordInfo<'DataLoadersId', '/data-loaders/:id', { id: ParamValue }, { id: ParamValue }>, 'IndexPage': RouteRecordInfo<'IndexPage', '/index-page', Record, Record>,