fix(forms): ngModel should export as ngModel

This commit is contained in:
Kara Erickson 2016-06-15 17:46:45 -07:00
parent 26676c4833
commit 8e6e90e703
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ export const formControlBinding: any =
@Directive({
selector: '[ngModel]:not([formControlName]):not([formControl])',
providers: [formControlBinding],
exportAs: 'ngForm'
exportAs: 'ngModel'
})
export class NgModel extends NgControl implements OnChanges,
OnDestroy {