began work on profile page

This commit is contained in:
ajdj100
2023-05-18 00:29:27 -04:00
parent 72184f07f2
commit 6386e02acd
7 changed files with 105 additions and 23 deletions

View File

@@ -12,7 +12,19 @@ export default createRouter({
{
path: '/profile',
name: 'Profile',
component: () => import('./views/profile.vue'),
component: () => import('./components/ProfilePage/profile.vue'),
children: [
{
path: '',
name: 'personnel',
component: () => import('./components/ProfilePage/personnel.vue')
},
{
path: 'activityHistory',
name: 'activityHistory',
component: () => import('./components/ProfilePage/activityHistory.vue')
}
]
},
{
path: '/users',