-
-
diff --git a/class_registration_app/src/router/index.ts b/class_registration_app/src/router/index.ts
index b56c908..cfd7ba8 100644
--- a/class_registration_app/src/router/index.ts
+++ b/class_registration_app/src/router/index.ts
@@ -5,6 +5,7 @@ import RegisterAccount from '../components/RegisterAccount.vue'
import CourseSearch from '../components/CourseSearch.vue'
import ScheduleView from '../components/ScheduleView.vue'
import DashBoard from '../components/DashBoard.vue'
+import EnrolledCourseList from '../components/EnrolledCourseList.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -41,6 +42,11 @@ const router = createRouter({
path: '/schedule_viewer',
name: 'Schedule Viewer',
component: ScheduleView
+ },
+ {
+ path: '/my_courses',
+ name: 'My Courses',
+ component: EnrolledCourseList
}
]