2018-11-08 01:09:33 +01:00
|
|
|
import { RouteConfig as VueRouteConfig } from 'vue-router'
|
2018-11-02 15:56:29 +01:00
|
|
|
|
2018-11-08 01:09:33 +01:00
|
|
|
import { RouteNames } from './route-names'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const RouteConfig: VueRouteConfig[] = [
|
|
|
|
|
{
|
|
|
|
|
component: () => import('@/root/home/home.vue'),
|
|
|
|
|
name: RouteNames.home,
|
|
|
|
|
path: '/',
|
|
|
|
|
meta: { name: 'Home' }
|
|
|
|
|
},
|
|
|
|
|
{ path: '/test', component: () => import('@/views/login/test.vue'), meta: { name: 'Test' } },
|
2018-12-06 20:07:51 +01:00
|
|
|
{ path: '/signup', component: () => import('@/views/login/signup/signup.vue'), meta: { name: 'Registration' } },
|
|
|
|
|
{ path: '/signin', component: () => import('@/views/login/signin/signin.vue'), meta: { name: 'Login' } }
|
2018-11-05 22:28:59 +01:00
|
|
|
/*
|
2018-11-02 20:30:53 +01:00
|
|
|
{ path: '/vreg', component: () => import('@/views/login/vreg.vue'), meta: { name: 'Verify Reg' } },
|
2018-11-02 20:10:45 +01:00
|
|
|
{
|
|
|
|
|
path: '/requestresetpwd',
|
2018-11-02 20:30:53 +01:00
|
|
|
component: () => import('@/views/login/requestresetpwd.vue'),
|
2018-11-02 20:10:45 +01:00
|
|
|
meta: { name: 'Reset your Password' }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/updatepwd',
|
2018-11-02 20:30:53 +01:00
|
|
|
component: () => import('@/views/login/updatepassword.vue'),
|
2018-11-02 20:10:45 +01:00
|
|
|
meta: { name: 'Update your Password' }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/simpleform',
|
2018-11-02 20:30:53 +01:00
|
|
|
component: () => import('@/views/form/simpleForm/simpleForm.vue'),
|
2018-11-02 20:10:45 +01:00
|
|
|
meta: { name: 'SimpleForm' }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: '/embeeded',
|
2018-11-02 20:30:53 +01:00
|
|
|
component: () => import('@/views/form/embeeded/embeeded.vue'),
|
2018-11-02 20:10:45 +01:00
|
|
|
meta: { name: 'Embeeded' }
|
2018-11-02 22:15:48 +01:00
|
|
|
}*/
|
|
|
|
|
]
|
2018-11-02 15:56:29 +01:00
|
|
|
|