Skip to content

Commit

Permalink
Merge branch 'develop' into renovate/sass-1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
SiongSng authored Mar 22, 2023
2 parents cf77493 + ef1855d commit 1c1734b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 9 additions & 9 deletions src/router/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,51 +9,51 @@ const routes: RouteRecordRaw[] = [
{
path: '/',
name: 'Home',
component: () => import('@/views/PageHome.vue'),
component: () => import('@/pages/PageHome.vue'),
},
{
path: '/overview',
name: 'Overview',
component: () => import('@/views/PageOverview.vue'),
component: () => import('@/pages/PageOverview.vue'),
},
{
path: '/account',
name: 'Account',
component: () => import('@/views/RouterView.vue'),
component: () => import('@/pages/RouterView.vue'),
children: [
{
path: 'login',
name: 'Login',
component: () => import('@/components/Auth/BlockLoginPage.vue'),
component: () => import('@/pages/Account/LoginPage.vue'),
},
{
path: 'signup',
name: 'SignUp',
component: () => import('@/components/Auth/BlockSignUpPage.vue'),
component: () => import('@/pages/Account/SignUpPage.vue'),
},
],
},
{
path: '/oauth',
name: 'OAuth',
component: () => import('@/views/RouterView.vue'),
component: () => import('@/pages/RouterView.vue'),
children: [
{
path: 'google',
name: 'Google OAuth',
component: () => import('@/views/PageOAuth.vue'),
component: () => import('@/pages/PageOAuth.vue'),
},
{
path: 'facebook',
name: 'Facebook OAuth',
component: () => import('@/views/PageOAuth.vue'),
component: () => import('@/pages/PageOAuth.vue'),
},
],
},
{
path: '/verify-email',
name: 'Verify Email',
component: () => import('@/views/PageVerifyEmail.vue'),
component: () => import('@/pages/PageVerifyEmail.vue'),
},
];

Expand Down

0 comments on commit 1c1734b

Please sign in to comment.