const appRoutes: Routes = [
{
path: "home",
component: HomeComponent
},
{
path: "employees",
component: EmployeeListComponent
},
{
path: "**",
redirectTo: "/home",
pathMatch : "full"
}
];
@NgModule({
imports: [BrowserModule, FormsModule, HttpModule, RouterModule.forRoot(appRoutes)],
declarations: [AppComponent, EmployeeComponent, TutorialComponent, EmployeeListComponent,
EmployeeTitlePipe, EmployeeCountComponent, SimpleComponent],
bootstrap: [AppComponent]
})
No comments:
Post a Comment