Answers for "In Angular 2, which of the following bundles gives mandates such as Switch link, RouterLinkActive, and RouterOutlet?"

16

angular navigate using component

import {Router} from '@angular/router'; // import router from angular router

export class Component{ 				// Example component.. 
	constructor(private route:Router){} 
  
  	go(){
		this.route.navigate(['/page']); // navigate to other page
	}
}
Posted by: Guest on May-08-2020

Code answers related to "In Angular 2, which of the following bundles gives mandates such as Switch link, RouterLinkActive, and RouterOutlet?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language