while using child routing in angular2 RC-4 getting this error
Cannot read property \'pathsWithParams\' of undefined
my routing file cont
Got the answer thanks @micronyks
actually the probelm is we have to use the property [routerLinkActiveOptions]="{exact: true}" while using routerLinkActive="active-link" in the html for checking active route.
[routerLinkActiveOptions]="{exact: true}"
routerLinkActive="active-link"
so the correct syntax for this is :
Dummy