From 37987e4e0b2b25611c82a722560df432d3737a5e Mon Sep 17 00:00:00 2001 From: ivamp Date: Sat, 17 Aug 2024 17:30:56 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=20=E8=81=94=E9=80=9A?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/app.ts | 5 ----- src/typed-router.d.ts | 1 - 2 files changed, 6 deletions(-) diff --git a/src/stores/app.ts b/src/stores/app.ts index 4ce9121..8206ac7 100644 --- a/src/stores/app.ts +++ b/src/stores/app.ts @@ -21,11 +21,6 @@ export const useAppStore = defineStore("app", { text: "工具", to: "/tools", }, - { - icon: "mdi-web", - text: "联通测试", - to: "/ping", - }, ], }), }); diff --git a/src/typed-router.d.ts b/src/typed-router.d.ts index 25d3a79..56f7c39 100644 --- a/src/typed-router.d.ts +++ b/src/typed-router.d.ts @@ -27,7 +27,6 @@ declare module 'vue-router/auto-routes' { '/auth/callback': RouteRecordInfo<'/auth/callback', '/auth/callback', Record, Record>, '/auth/login': RouteRecordInfo<'/auth/login', '/auth/login', Record, Record>, '/chats/[id]/': RouteRecordInfo<'/chats/[id]/', '/chats/:id', { id: ParamValue }, { id: ParamValue }>, - '/ping/': RouteRecordInfo<'/ping/', '/ping', Record, Record>, '/public_chat/': RouteRecordInfo<'/public_chat/', '/public_chat', Record, Record>, '/tools/': RouteRecordInfo<'/tools/', '/tools', Record, Record>, '/tools/create': RouteRecordInfo<'/tools/create', '/tools/create', Record, Record>,