html-router
v2.1.1
Published
A router designed with simplicity in mind where you dont have to touch any javascript if you dont want to.
Downloads
10
Maintainers
Readme
html-router
A router designed with simplicity in mind.
<body>
<router-view></router-view>
<router-route path="/" redirect="/home"></router-route>
<router-route path="/home">
<h1>Home!</h1>
<button onclick="router.push('/login')">Load Login!</button>
</router-route>
<router-route path="/login">
<h1>Login!</h1>
<button onclick="router.push('/home')">Load Home!</button>
</router-route>
<script src="https://unpkg.com/html-router"></script>
</body>