Getting started
Set Up Your App Component
<template>
<h1>${router.title}</h1>
<nav>
<ul>
<li repeat.for="nav of router.navigation">
<a href.bind="nav.href">${nav.title}</a>
</li>
</ul>
</nav>
<router-view></router-view>
</template>Configure the Router
Create Route Components
The Basics
Last updated
Was this helpful?