angular - 参数类型MouseEvent无法分配给参数类型MouseEvent-LMLPHP
在Intellij v.2018.3.2中。每次通过$event到方法时,我都会得到这个错误。
在模板中我有:

<a href="#" (click)="toggle($event)">{{ header }}</a>

然后在课堂上:
public toggle(event: MouseEvent): void {
    event.preventDefault();
}

知道怎么回事吗?

最佳答案

这似乎是IDE中的一个错误。我已经提交了一张票:youtrack ticket

关于angular - 参数类型MouseEvent无法分配给参数类型MouseEvent,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54127550/

10-09 21:45