As of this question How to group angular components with a root component like how the App-Component works , I have children being loaded into the main router-outlet, is there a way to have more than one child load at a time, and each being inserted into its own special outlet?
Like :
Parent View
<section class="main-parent">
<router-outlet-child1></router-outlet-child1>
<router-outlet-child2></router-outlet-child2>
</section>
and routing like ::
{
path: 'parent-path', component: ParentComponent, children: [
{ path: '', component: Child1Component }, //to first outlet
{ path: '', component: Child2Component }, //to 2nd outlet
]
},