setup for rank change page

This commit is contained in:
2025-09-05 19:27:15 -04:00
parent c1e52ec4c0
commit 7e3c8cbc70
19 changed files with 452 additions and 23 deletions

View File

@@ -1,12 +1,14 @@
import { createRouter, createWebHistory } from 'vue-router'
import ManageApplications from '@/pages/ManageApplications.vue'
import Application from '@/pages/Application.vue'
import RankChange from '@/pages/RankChange.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{ path: '/applications', component: ManageApplications },
{ path: '/applications/:id', component: Application },
{ path: '/changeRank', component: RankChange },
]
})