Skip to content

Commit 61518e8

Browse files
committed
refactor(frontend): rename view to pages
1 parent f65c5ca commit 61518e8

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.
File renamed without changes.

frontend/src/router/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const router = createRouter({
66
{
77
path: '/',
88
name: 'home',
9-
component: () => import('@/views/HomeView.vue'),
9+
component: () => import('@/pages/Home.vue'),
1010
},
1111
{
1212
path: '/dashboard',
@@ -15,7 +15,7 @@ const router = createRouter({
1515
children: [
1616
{
1717
path: '/dashboard',
18-
component: () => import('@/views/DashboardView.vue'),
18+
component: () => import('@/pages/Dashboard.vue'),
1919
},
2020
],
2121
},

0 commit comments

Comments
 (0)