Skip to content

Olian04/html-router

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

html-router

A router designed with simplicity in mind.

Fiddle demo

Fiddle demo (with brynja)

<body>
  <router-view></router-view>

  <router-route path="/" redirect="/home"></router-route>

  <router-route path="/home">
    <h1>Home!</h1>
    <a href="#/login">Load Login!</a>
  </router-route>

  <router-route path="/login">
    <h1>Login!</h1>
    <a href="#/home">Load Home!</a>
  </router-route>

  <script src="https://unpkg.com/html-router"></script>
</body>