html 파일에 다음 버튼이있는 경우
<button (click)="doSomething('testing', $event)">Do something</button>
또한 해당 구성 요소에는이 기능이 있습니다.
doSomething(testString: string, event){
event.stopPropagation();
console.log(testString + ': I am doing something');
}
$event
입력에 할당해야하는 적절한 유형이 있습니까? 이벤트 매개 변수 자체는 객체이지만 유형 객체에 할당하면 오류가 발생합니다.
유형 개체에 'stopPropogation'속성이 없습니다.
그렇다면 Typescript는 $event
입력을 무엇으로 간주 합니까?
doSomething(testString: string, event: MouseEvent)