mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
14 lines
300 B
HTML
14 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 -->
|