home, vault, and profile pages are framed out

This commit is contained in:
Annika
2022-08-03 16:31:59 -06:00
parent 68dc18954d
commit 34f93f289b
16 changed files with 356 additions and 100 deletions
+6 -1
View File
@@ -18,9 +18,14 @@ const routes = [
beforeEnter: authGuard
},
{
path: '/profile',
path: '/profile/:id',
name: 'Profile',
component: loadPage('ProfilePage')
},
{
path: '/vault/:id',
name: 'Vault',
component: loadPage('VaultPage')
}
]