[F] Move signOut() to the right place

This commit is contained in:
Hykilpikonna
2019-09-20 18:50:13 -04:00
parent cef0b31dba
commit 204e7dc04a
2 changed files with 9 additions and 9 deletions
+9
View File
@@ -27,4 +27,13 @@ export default class Navigation extends Vue
// Call custom event
this.$emit('navigation:select', this.activeIndex);
}
/**
* This function is called when the sign out button is clicked.
*/
public signOut()
{
// Call custom event
this.$emit('sign-out');
}
}
-9
View File
@@ -148,13 +148,4 @@ export default class Overall extends Vue
return result;
}
/**
* This function is called when the sign out button is clicked.
*/
public signOut()
{
// Call custom event
this.$emit('sign-out');
}
}