I am generating dynamic angular components using angular-cdk and based on article
blog.angularindepth.com/here-is-what-you-need-to-know-about-dynamic-components-in-angular
Trying to do this the only option seems feasible is to use named router-outlets like one below <router-outlet name="outletname"></router-outlet>
however here i can not bind the name
property of the router-outlet and hence the data i am trying to route here gets rendered in very-palce i have re-used this container.
SInce this are dynamically generated components and modularized they are reusable. Also the same can be repeated in terms of useage eg: i can reuse a dynamically generated content-layout-container across various places where i have to implement containers. Hence this containers have to render various components based on data of which route I am trying to render.
Hence this containers have to render various components based on data of which route I am trying to render.
is there a way i can bind the name dynamically thus i can reuse the cdk components without any issues .