angular/aio/content/examples/lazy-loading-ngmodules/src/app/app.component.html
2018-01-17 17:02:41 -08:00

13 lines
300 B
HTML

<!-- #docplaster -->
<!-- #docregion app-component-template -->
<h1>
{{title}}
</h1>
<button routerLink="/customers">Customers</button>
<button routerLink="/orders">Orders</button>
<button routerLink="">Home</button>
<router-outlet></router-outlet>
<!-- #enddocregion app-component-template -->