Angular - Routing
You have this route config:
And template:
When navigating to
const routes = [
{ path: 'main', component: MainComponent },
{ path: 'info', component: InfoComponent, outlet: 'side' }
];And template:
<router-outlet></router-outlet> <router-outlet name="side"></router-outlet>
When navigating to
/main(side:info), the InfoComponent does not render. What is the likely cause?