所以我有这个代码 -
@Component({
tag: "app-home",
styleUrl: "app-home.css"
})
export class AppHome {
@Event()
myEvent: EventEmitter;
callEv() {
this.myEvent.emit("hello");
}
render() {
return (
<div class="app-home">
<button onClick={this.callEv}>Hello</button>
</div>
);
}
}
单击按钮时,我在控制台中收到此错误-
未捕获的类型错误:无法读取未定义的属性“发出” 在 HTMLButtonElement.callEv
知道为什么吗?