September 2017
Intermediate to advanced
450 pages
11h 24m
English
We can define a home page with our RouterModule configuration that will be served when the user loads the top level of our application, as follows:
ng generate component home
...import { HomeComponent } from './home/home.component';@NgModule({ declarations: [ AppComponent, AuthorsComponent, PageNotFoundComponent, AuthorComponent, HomeComponent ], imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, HttpModule, RouterModule.forRoot({ path: "", component: HomeComponent },{ path: "posts", ...Read now
Unlock full access