1 参考上节新建app-routing.module.ts路由文件
2 在 app.module.ts 引入刚才定义的路由
import { AppRoutingModule } from './app-routing.module';
3 在app.module.ts 里面的 import 注册这个路由模块
imports: [
BrowserModule,
AppRoutingModule
]
4 找到 app.component.html 根组件模板,配置 router-outlet 显示动态加载的路由
<router-outlet></router-outlet>