[+] Push history state on navigation

This commit is contained in:
Hykilpikonna
2019-10-14 09:32:19 -04:00
parent bb618e74c9
commit 87634f0df5
+6
View File
@@ -263,6 +263,12 @@ export default class App extends Vue
// Update selected tab
this.selectedTab = tab;
// Check url
let url = tab;
// Push history state
window.history.pushState({}, '', url);
}
/**