There is hardly any information regarding auxiliary routes on the web, even less so for RC5/RC1, I hope someone here on SO managed to get them to work (they are supposed to have been fixed or so I heard, but that's about it).
I got the following routing declaration:
import {
RouterModule,
Routes
} from '@angular/router';
import { ContactsComponent } from './contacts.component';
import { NewContactComponent } from './new-contact.component';
const contactsRoutes: Routes = [
{ path: '', component: ContactsComponent },
{ path: 'new', component: NewContactsComponent, outlet: 'form' }
];
export const contactsRouting = RouterModule.forChild(contactsRoutes);
Here's the routerLink
and outlet
on ContactsComponent
:
<a [routerLink]="['.', 'form:new']">
<button md-fab class="md-fab">
<md-icon class="md-24">add</md-icon>
</button>
</a>
<router-outlet name="form"></router-outlet>
However, this only leads to error messages such as
Error: Cannot match any routes: 'contacts/form%3Anew'
Does anyone have a working example for Angular2 RC5/Router3 RC1?
As far as I know it should be something like
See also https://angular.io/docs/ts/latest/api/router/index/RouterLink-directive.html