Skip to content

Instantly share code, notes, and snippets.

@thecreazy
Last active January 21, 2019 11:37
Show Gist options
  • Save thecreazy/4ccd1cfe633cbfa3d1a96072f6a1df3b to your computer and use it in GitHub Desktop.
Save thecreazy/4ccd1cfe633cbfa3d1a96072f6a1df3b to your computer and use it in GitHub Desktop.
Start the router implementation
class Router{
routes: []
mode: null
root: '/'
constructor(){
this.mode = !!(history.pushState) ? 'history' : 'hash';
}
}
export default new Router()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment