Angular js 2 routing is happening but nothing changing in url
hai all,
Am new to angular js 2 and i have created routing example with three tab they are different type of forms in angular js 2.. 1.Template driven 2.The model driven 3.The model driven with form builder
issue is when i click another tab file content changes but url,validation are not working
I have uploaded entire content in github Am glad if someone helps me to clean that code also. Am am also looking for contributor for that form templates
Thanks in advance here is the code for routing in app.component.ts
<nav>
<a routerLink="/angulartemplateform" routerLinkActive="active">Angular Forms Using Template</a>
<a routerLink="/angularmoduleformdata" routerLinkActive="active">Angular Forms Using Model</a>
<a routerLink="/angularmodulebuilder" routerLinkActive="active">Angular Forms Using Form Builder</a>
</nav>
<router-outlet></router-outlet>
Github Url ::https://github.com/selva1990kumar/AngularJS-Forms
