init after I forgot

This commit is contained in:
2026-05-01 19:32:15 -06:00
commit c3de799f09
29 changed files with 4256 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
import { createRouter, createWebHistory } from 'vue-router'
import HelloWorld from '../components/HelloWorld.vue'
import Dashboard from '../views/Dashboard.vue'
import SystemNotice from '../views/SystemNotice.vue'
const routes = [
{
path: '/',
name: 'Home',
component: HelloWorld
},
{
path: '/dashboard',
name: 'Dashboard',
component: Dashboard
},
{
path: '/system-notice',
name: 'SystemNotice',
component: SystemNotice,
meta: { hideHeader: true, hideFooter: true }
},
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router