mod: 删除多余路由及组件

This commit is contained in:
zhangchuanlong 2022-02-10 17:42:16 +08:00
parent e4e1ec7830
commit 9f2126835a
2 changed files with 0 additions and 10 deletions

View File

@ -8,12 +8,6 @@ export const basicRoutes = [
component: () => import('@/views/error-page/404.vue'),
isHidden: true,
},
{
name: '401',
path: '/401',
component: () => import('@/views/error-page/401.vue'),
isHidden: true,
},
{
name: 'REDIRECT',
path: '/redirect',
@ -27,7 +21,6 @@ export const basicRoutes = [
},
],
},
{
name: 'LOGIN',
path: '/login',

View File

@ -1,3 +0,0 @@
<template>
<h1>401</h1>
</template>