I have a scenario in which I have to copy the way quick edit works on wordpress.
Based on what I understand you can do on router-outlet like this
<div>
<router-outlet></router-outlet>
<router-outlet name="quick"></router-outlet>
</div>
and you can use it by entering localhost:4200/users(quick:quick-edit).
Now my scenario is I want to load all the users on a grid. Under the grid There will be 3 small buttons Edit | Quick Edit | Trash
When I clicked Edit it will call the edit on a new page. So using router-outlet
/router-outlet only works fine however if I click Quick Edit
it will still show the users in grid and change the selected row into a quick edit form. Based on that scenario it should look like this
<router-outlet>
<table>
<tr>
</tr>
<router-outlet name="quick"></router-outlet>
</table> <!-- It will be loaded once quick edit is pressed -->
</router-outlet>
but it seems it is not possible? Any idea or work around to make it working?

quick-editandeditare same components? - Aravind