All pages added

This commit is contained in:
Bahadır Sofuoğlu
2022-11-04 13:30:28 +03:00
parent 5aabc9b5fb
commit c73f822ab4
6 changed files with 588 additions and 0 deletions

View File

@@ -103,6 +103,21 @@ const router = createRouter({
path: '/utilities/icons',
name: 'icons',
component: () => import('@/views/utilities/Icons.vue')
},
{
path: '/pages/timeline',
name: 'timeline',
component: () => import('@/views/pages/Timeline.vue')
},
{
path: '/pages/empty',
name: 'empty',
component: () => import('@/views/pages/Empty.vue')
},
{
path: '/documentation',
name: 'documentation',
component: () => import('@/views/utilities/Documentation.vue')
}
]
},
@@ -111,6 +126,12 @@ const router = createRouter({
name: 'landing',
component: () => import('@/views/pages/Landing.vue')
},
{
path: '/pages/notfound',
name: 'notfound',
component: () => import('@/views/pages/NotFound.vue')
},
{
path: '/auth/login',
name: 'login',