[+] Implement actual sign out function

This commit is contained in:
Hykilpikonna
2019-09-20 19:10:37 -04:00
parent 24328508c0
commit df639a360c
+9
View File
@@ -185,4 +185,13 @@ export default class App extends Vue
// Update selected tab
this.selectedTab = tab;
}
/**
* Sign out
*/
public signOut()
{
// Clear all cookies
this.$cookies.keys().forEach(key => this.$cookies.remove(key));
}
}