标签: angular angular5
我在Angular 5中有一个测试应用程序,其app.component.html中的布局简单,其内容夹在页眉和页脚之间:
<app-header></app-header> <router-outlet></router-outlet> <app-footer></app-footer>
我在应用程序标题中有一个h1元素,该元素应根据路由器插座中显示的内容(“设置”,“帐户”等)来更改文本。
我该如何完成?可以将其作为路由的一部分吗?
谢谢。