From bb618e74c9895d5a6e304d5e8fd819ecb202b9f5 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 14 Oct 2019 09:31:54 -0400 Subject: [PATCH] [+] Import course page in app --- src/components/app/app.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/app/app.ts b/src/components/app/app.ts index c3b551e..df170fd 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -9,6 +9,8 @@ import {HttpUtils} from '@/utils/http-utils'; import {CourseUtils} from '@/utils/course-utils'; import {GPAUtils} from '@/utils/gpa-utils'; import Loading from '@/components/loading/loading.vue'; +import CoursePage from '@/pages/course/course-page'; + /** * Objects of this interface represent assignment grades. @@ -58,7 +60,7 @@ export interface Course } @Component({ - components: {Login, Navigation, Overall, Loading}, + components: {Login, Navigation, Overall, Loading, CoursePage}, }) export default class App extends Vue {