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>,