parent
647b02e989
commit
f3715c7900
4 changed files with 67 additions and 1 deletions
|
|
@ -5,6 +5,7 @@ import HomeComponent from '../views/Home'
|
|||
import NotFoundComponent from '../views/404'
|
||||
import LoadingComponent from '../components/misc/loading'
|
||||
import ErrorComponent from '../components/misc/error'
|
||||
import About from '../views/About'
|
||||
// User Handling
|
||||
import LoginComponent from '../views/user/Login'
|
||||
import RegisterComponent from '../views/user/Register'
|
||||
|
|
@ -527,5 +528,10 @@ export default new Router({
|
|||
name: 'openid.auth',
|
||||
component: OpenIdAuth,
|
||||
},
|
||||
{
|
||||
path: '/about',
|
||||
name: 'about',
|
||||
component: About,
|
||||
},
|
||||
],
|
||||
})
|
||||
Reference in a new issue