Router-outlet directive: - Router-outlet directive is used to render the components for specific location of your applications. Both the template and templateUrl render the components where you use this directive.
Syntax:-
<router-outlet> </router-outlet>
Router-link directive:- Router-link directive is used to link a specific part of your applications.
<router-link> </router-link>
Example,
<a [router-link]="['/AboutMe']">About Me</a>
The Route-Config: - The route config is used to map components to URLs.
@RouteConfig([ {path: '/', component: Home_Component, as: 'Home'}, {path: '/AboutMe', component: AboutMe_Component, as: 'AboutMe' } {path: '/ContactMe', component: ContactMe_Component, as: 'ContactMe' } ])
The Route Params: - The route parameter is used to map given URL's parameters based on the rout URLs and it is an optional parameters for that route.
Syntax:-
params : {[key: string]: string}
Example,
@RouteConfig([ {path: '/employ/:id', component: employe, name: 'emp'}, ])
The Live demo as,
Stayed Informed – 68 Best Angular 2 Interview Q/A
I hope you are enjoying with this post! Please share with you friends. Thank you so much!
I hope you are enjoying with this post! Please share with you friends. Thank you so much!