Created
June 29, 2019 00:47
-
-
Save geeksilva97/e539c60d444118e9246f2ce5955e8789 to your computer and use it in GitHub Desktop.
Handle SPA routing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
const path = window.location.pathname.slice(1); | |
localStorage.setItem('path', path); | |
window.location.href='../'; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment