Assign URL to each page of admin (#5366)

* Assign URL to each page of admin

* Remove cursor pointer
This commit is contained in:
Aya Morisawa 2019-08-30 04:19:49 +09:00 committed by syuilo
parent 97f23af86d
commit 1f890c5bed
2 changed files with 18 additions and 19 deletions

View file

@ -19,7 +19,8 @@ init(launch => {
mode: 'history',
base: '/admin/',
routes: [
{ path: '/', component: Index },
{ path: '/:page', component: Index },
{ path: '/', redirect: '/dashboard' },
{ path: '*', component: NotFound }
]
});