From 1fd4e89f845ec13a3a7d79792ba216a0354dd757 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sat, 24 Aug 2019 21:21:04 +0800 Subject: [PATCH] [+] Add proper documentation to the fields --- src/components/app/app.ts | 4 ++++ 1 file changed, 4 insertions(+) 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; /**