diff --git a/src/components/app/app.ts b/src/components/app/app.ts index 955cfa2..ca45f70 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -40,12 +40,16 @@ export interface Course }) export default class App extends Vue { + // Is the login panel shown public showLogin: boolean = true; + // List of course that the student takes public courses: Course[] = []; + // Currently selected tab public selectedTab: string = "overall"; + // Are the course assignments loaded from the server. public assignmentsReady: boolean = false; /**