From e4374a673128a2e2e45dc9743015382e30c60342 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 13 Oct 2019 19:43:11 -0400 Subject: [PATCH] [+] Add loading to app --- src/components/app/app.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/app/app.ts b/src/components/app/app.ts index a141a3a..8fe2a17 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -8,6 +8,7 @@ import pWaitFor from 'p-wait-for'; import {HttpUtils} from '@/utils/http-utils'; import {CourseUtils} from '@/utils/course-utils'; import {GPAUtils} from '@/utils/gpa-utils'; +import Loading from '@/components/loading/loading'; /** * Objects of this interface represent assignment grades. @@ -57,7 +58,7 @@ export interface Course } @Component({ - components: {Login, Navigation, Overall}, + components: {Login, Navigation, Overall, Loading}, }) export default class App extends Vue {