We are currently planning a new angular 7 app with material design (md-tabs) which will work with several tabs. Basically it should be possible to create new tabs dynamically, which should represent the content of a route. At the beginning the start page should be opened in the first tab which always exists. With certain actions a new tab will be created with a route.
If you now click on a link in the navigation, this content should always be loaded in the currently active tab.
To create these new tabs dynamically I use an array, this is not a problem. How I can load routes dynamically in new tabs and how I can redirect the router-outlet dynamically into another tab is a mystery to me. Does anyone have a good idea if and how this can be done?