I have below a test route with parameter T1:
{
path: 'Test/:T1',
component: TestComponent
},
When I head to "Test / 2" from "Test / 1", mine TestComponentdoes not reinitialize. Is this a problem with angular router?
I use "@angular/router": "3.0.0-beta.1"
source
share