How do I extend RouterOutlet when using the new router in RC.1
问题 I can't seem to extend RouterOutlet when using the new router in RC.1 Example: import { Directive } from '@angular/core'; import { Router, ROUTER_DIRECTIVES, RouterOutlet } from '@angular/router'; @Directive({ selector: 'router-outlet' }) export class RouterOutletDirective extends RouterOutlet { } The error: @angular/router/index"' has no exported member 'RouterOutlet'. Am i doing something wrong or is this broke with the new router in RC.1? Updated: import { Directive, Attribute,