got a basic dashboard going

This commit is contained in:
2026-06-01 16:30:02 -06:00
parent e5e45043a8
commit 1d00b8e171
14 changed files with 753 additions and 58 deletions
+14
View File
@@ -0,0 +1,14 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
export default createRouter({
history: createWebHistory(),
routes: [
{ path: '/', component: HomeView, meta: { title: 'Dashboard' } },
{ path: '/tables', component: () => import('../views/TableListView.vue'), meta: { title: 'Table List' } },
{ path: '/typography', component: () => import('../views/TypographyView.vue'), meta: { title: 'Typography' } },
{ 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' } },
],
})