Simplified routing in tutorial example Updated ngmodule guide and ngmodule faq with routing module prose
24 lines
618 B
TypeScript
24 lines
618 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Routes,
|
|
RouterModule } from '@angular/router';
|
|
|
|
import { HeroComponent } from './hero.component';
|
|
import { HeroListComponent } from './hero-list.component';
|
|
import { HeroDetailComponent } from './hero-detail.component';
|
|
|
|
const routes: Routes = [
|
|
{ path: '',
|
|
component: HeroComponent,
|
|
children: [
|
|
{ path: '', component: HeroListComponent },
|
|
{ path: ':id', component: HeroDetailComponent }
|
|
]
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class HeroRoutingModule {}
|