Merge branch 'bug-fixes'

This commit is contained in:
Hykilpikonna
2019-08-21 23:01:39 +08:00
+7 -2
View File
@@ -9,15 +9,20 @@ import Constants from '@/constants';
}) })
export default class Navigation extends Vue export default class Navigation extends Vue
{ {
public activeIndex: string = '0'; public activeIndex: string = 'overall';
@Prop() courses: any; @Prop() courses: any;
/** /**
* This function is called when the selection changes. * This function is called when the selection changes.
*
* @param index The index selected
* @param indexPath The path of the index
*/ */
public onSelect() public onSelect(index: string, indexPath: string)
{ {
// Update active index
this.activeIndex = index;
} }
} }