diff --git a/src/router/index.js b/src/router/index.js index 20a758a..3db8597 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -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', diff --git a/src/views/pages/CrudDemo.vue b/src/views/pages/CrudDemo.vue new file mode 100644 index 0000000..da05417 --- /dev/null +++ b/src/views/pages/CrudDemo.vue @@ -0,0 +1,308 @@ +