did a whole ton of shit with calendars and roles system

This commit is contained in:
2025-10-06 23:33:29 -04:00
parent a692c15149
commit c883444de6
10 changed files with 1022 additions and 7 deletions

View File

@@ -9,6 +9,7 @@ const router = createRouter({
{ path: '/members', component: () => import('@/pages/memberList.vue') },
{ path: '/loa', component: () => import('@/pages/SubmitLOA.vue') },
{ path: '/transfer', component: () => import('@/pages/Transfer.vue') },
{ path: '/calendar', component: () => import('@/pages/Calendar.vue') },
{
path: '/administration',
children: [
@@ -31,6 +32,10 @@ const router = createRouter({
{
path: 'loa',
component: () => import('@/pages/ManageLOA.vue')
},
{
path: 'roles',
component: () => import('@/pages/ManageRoles.vue')
}
]
}