For an existing MVC application we're bootstrapping our Angular app module using a querySelector.
@Component({
selector: 'my-app',
template: document.querySelector("my-app").innerHTML
})
Components get rendered and everything is well. However, when the innerHTML contains routerlinks, clicking them does not result in a navigation to that route.
Plunker comparison with querySelector vs without querySelector