From cd2cbc5f0a67eb11760163787db671946d9d9707 Mon Sep 17 00:00:00 2001 From: Silent YANG Date: Sun, 14 Apr 2024 19:37:40 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E6=8C=87=E5=8D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/routes/modules/guide.ts | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/router/routes/modules/guide.ts diff --git a/src/router/routes/modules/guide.ts b/src/router/routes/modules/guide.ts deleted file mode 100644 index 48f30d3..0000000 --- a/src/router/routes/modules/guide.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { DEFAULT_LAYOUT } from '../base'; -import { AppRouteRecordRaw } from '../types'; - -const GUIDE: AppRouteRecordRaw = { - path: '/guide', - name: 'guide', - component: DEFAULT_LAYOUT, - meta: { - locale: '指南', - requiresAuth: true, - icon: 'icon-list', - order: 3, - }, - children: [ - { - path: 'f117', - name: 'f117', - component: () => import('@/views/guide/f117/index.vue'), - meta: { - locale: '使用117P6版', - requiresAuth: true, - roles: ['*'], - }, - }, - ], -}; - -export default GUIDE;