v3
This commit is contained in:
@@ -27,7 +27,7 @@ const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
name: 'project_add',
|
||||
path: '/project/add',
|
||||
component: () => import('pages/CreateProjectPage.vue')
|
||||
component: () => import('pages/ProjectCreatePage.vue')
|
||||
},
|
||||
|
||||
{
|
||||
@@ -94,9 +94,38 @@ const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
name: 'create_account',
|
||||
path: '/create-account',
|
||||
component: () => import('pages/CreateAccountPage.vue')
|
||||
component: () => import('src/pages/AccountCreatePage.vue')
|
||||
},
|
||||
{
|
||||
name: 'change_account_password',
|
||||
path: '/change-password',
|
||||
component: () => import('pages/AccountChangePasswordPage.vue')
|
||||
},
|
||||
{
|
||||
name: 'change_account_email',
|
||||
path: '/change-email',
|
||||
component: () => import('pages/AccountChangeEmailPage.vue')
|
||||
},
|
||||
{
|
||||
name: 'subscribe',
|
||||
path: '/subscribe',
|
||||
component: () => import('pages/SubscribePage.vue')
|
||||
},
|
||||
{
|
||||
name: 'terms',
|
||||
path: '/terms-of-use',
|
||||
component: () => import('pages/TermsPage.vue')
|
||||
},
|
||||
{
|
||||
name: 'privacy',
|
||||
path: '/privacy',
|
||||
component: () => import('pages/PrivacyPage.vue')
|
||||
},
|
||||
{
|
||||
name: 'your_company',
|
||||
path: '/your-company',
|
||||
component: () => import('src/pages/CompanyYourPage.vue')
|
||||
},
|
||||
|
||||
{
|
||||
name: 'login',
|
||||
path: '/login',
|
||||
@@ -106,13 +135,13 @@ const routes: RouteRecordRaw[] = [
|
||||
{
|
||||
name: 'recovery_password',
|
||||
path: '/recovery-password',
|
||||
component: () => import('pages/ForgotPasswordPage.vue')
|
||||
component: () => import('src/pages/AccountForgotPasswordPage.vue')
|
||||
},
|
||||
|
||||
{
|
||||
name: 'add_company',
|
||||
path: '/add-company',
|
||||
component: () => import('pages/CreateCompanyPage.vue')
|
||||
component: () => import('src/pages/CompanyCreatePage.vue')
|
||||
},
|
||||
|
||||
{
|
||||
@@ -125,12 +154,6 @@ const routes: RouteRecordRaw[] = [
|
||||
name: 'settings',
|
||||
path: '/settings',
|
||||
component: () => import('pages/SettingsPage.vue')
|
||||
},
|
||||
|
||||
{
|
||||
name: 'terms',
|
||||
path: '/terms-of-use',
|
||||
component: () => import('pages/TermsPage.vue')
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user