adding a profile page

This commit is contained in:
2026-06-01 16:34:07 -06:00
parent 1d00b8e171
commit b08d347727
3 changed files with 249 additions and 4 deletions
+1
View File
@@ -10,5 +10,6 @@ export default createRouter({
{ path: '/icons', component: () => import('../views/IconsView.vue'), meta: { title: 'Icons' } },
{ path: '/maps', component: () => import('../views/MapsView.vue'), meta: { title: 'Maps' } },
{ path: '/notifications',component: () => import('../views/NotificationsView.vue'), meta: { title: 'Notifications' } },
{ path: '/profile', component: () => import('../views/ProfileView.vue'), meta: { title: 'Profile' } },
],
})