LOA UI completed (without integration)

This commit is contained in:
2025-09-15 18:32:20 -04:00
parent 456c29a731
commit 303b72a160
33 changed files with 984 additions and 7 deletions

View File

@@ -3,6 +3,7 @@ import ManageApplications from '@/pages/ManageApplications.vue'
import Application from '@/pages/Application.vue'
import RankChange from '@/pages/RankChange.vue'
import MemberList from '@/pages/memberList.vue'
import LOA from '@/pages/LOA.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -10,7 +11,8 @@ const router = createRouter({
{ path: '/applications', component: ManageApplications },
{ path: '/applications/:id', component: Application },
{ path: '/changeRank', component: RankChange },
{ path: '/members', component: MemberList}
{ path: '/members', component: MemberList},
{ path: '/loa', component: LOA}
]
})