Programmatically build links. Styling Changes

This commit is contained in:
2023-11-16 16:35:41 -05:00
parent 791f065367
commit 214cfbd1be
14 changed files with 278 additions and 142 deletions

View File

@@ -10,6 +10,27 @@ const routes: RouteRecordRaw[] = [
component: () => import('pages/IndexPage.vue'),
name: 'index',
},
{
path: '/boat',
component: () => import('pages/BoatPage.vue'),
name: 'boat',
},
],
},
{
path: '/admin',
component: () => import('layouts/AdminLayout.vue'),
children: [
{
path: '/user',
component: () => import('pages/admin/UserAdminPage.vue'),
name: 'useradmin',
},
{
path: '/boat',
component: () => import('pages/admin/BoatAdminPage.vue'),
name: 'boatadmin',
},
],
},
{