minisola
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
6 deletions
-
config/routes.ts
|
|
@ -18,9 +18,6 @@ export default [ |
|
|
path: '/user/login', |
|
|
path: '/user/login', |
|
|
component: './User/Login', |
|
|
component: './User/Login', |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
|
|
|
component: './404', |
|
|
|
|
|
}, |
|
|
|
|
|
], |
|
|
], |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
@ -41,9 +38,6 @@ export default [ |
|
|
icon: 'smile', |
|
|
icon: 'smile', |
|
|
component: './Welcome', |
|
|
component: './Welcome', |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
|
|
|
component: './404', |
|
|
|
|
|
}, |
|
|
|
|
|
], |
|
|
], |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
@ -57,6 +51,7 @@ export default [ |
|
|
redirect: '/welcome', |
|
|
redirect: '/welcome', |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
|
|
|
path: '*', |
|
|
component: './404', |
|
|
component: './404', |
|
|
}, |
|
|
}, |
|
|
]; |
|
|
]; |
|
|
|