finished up the components, added showcase view, and documentation

This commit is contained in:
2026-06-01 17:32:42 -06:00
parent d34d61458b
commit db2ddadff3
6 changed files with 833 additions and 0 deletions
+1
View File
@@ -11,5 +11,6 @@ export default createRouter({
{ 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' } },
{ path: '/showcase', component: () => import('../views/ShowcaseView.vue'), meta: { title: 'Component Showcase' } },
],
})