路由
参考样式指南,提供一个类型为 'Routes' 的 const 对象,具有唯一的名称:
JavaScript
const APP_ROUTES: Routes = [
{ path: 'about', component: AboutComponent },
{ path: '', component: HomeComponent}
];
...
RouterModule.forRoot(APP_ROUTES)