From 0e742a485f3fa7d35d26b05980a293b5760e8418 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 14 Jul 2024 16:17:59 -0500 Subject: Initial commit --- src/router/routes.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/router/routes.js (limited to 'src/router/routes.js') diff --git a/src/router/routes.js b/src/router/routes.js new file mode 100644 index 0000000..b8500ad --- /dev/null +++ b/src/router/routes.js @@ -0,0 +1,22 @@ + +const routes = [ + { + path: '/', + component: () => import('layouts/MainLayout.vue'), + children: [ + { path: '', component: () => import('pages/IndexPage.vue') }, + { path: '/books', component: () => import('pages/BookPage.vue') }, + { path: '/forms', component: () => import('pages/FormPage.vue') }, + { path: '/workouts', component: () => import('pages/WorkoutPage.vue') }, + ] + }, + + // Always leave this as last one, + // but you can also remove it + { + path: '/:catchAll(.*)*', + component: () => import('pages/ErrorNotFound.vue') + } +] + +export default routes -- cgit v1.2.3