ngx-modialog
ngx-modialog copied to clipboard
Open custom dialog using angular route component
I know this probably is not the right place for this but didn't know where else to ask, this is not an issue but looking for an example of how to open a custom dialog to a angular route.
For example I have the following route which creates a wizard like interface and want to load this into a modal dialog
routes: [
{path: 'create': component: ..., children:[
{path: '', component: ...},
{path: 'page2', components: ...},
...
}
];
Is it possible to have the modal open the component of a route and if so has anyone got any examples of doing this?