[+] Add proper documentation to the fields

This commit is contained in:
Hykilpikonna
2019-08-24 21:21:04 +08:00
parent c05b799334
commit 1fd4e89f84
+4
View File
@@ -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;
/**