Property 'value' does not exist on type 'EventTarget'

前端 未结 7 2108
深忆病人
深忆病人 2020-11-30 00:40

I am using TypeScript Version 2 for an Angular 2 component code.

I am getting error "Property \'value\' does not exist on type \'EventTarget\'" for below co

7条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-30 01:24

    I believe it must work but any ways I'm not able to identify. Other approach can be,

    
    
    
    export class TextEditorComponent {
       @Output() countUpdate = new EventEmitter();
    
       emitWordCount(model) {
           this.countUpdate.emit(
             (model.match(/\S+/g) || []).length);
           }
    }
    

提交回复
热议问题