This rewrite changes headings to focus on user tasks rather than features, verifies that content is up-to-date and complete, removes colloquial phrases, adds prerequisites, and expands on a task-based section in the beginning (a quick reference). PR Close #35566
27 lines
501 B
HTML
27 lines
501 B
HTML
<!-- #docregion child-routes-->
|
|
<h2>First Component</h2>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><a routerLink="child-a">Child A</a></li>
|
|
<li><a routerLink="child-b">Child B</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<router-outlet></router-outlet>
|
|
<!-- #enddocregion child-routes-->
|
|
|
|
|
|
<!-- #docregion relative-route-->
|
|
|
|
<h2>First Component</h2>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><a routerLink="../second-component">Relative Route to second component</a></li>
|
|
</ul>
|
|
</nav>
|
|
<router-outlet></router-outlet>
|
|
|
|
<!-- #enddocregion relative-route-->
|