我有以下示例: https://stackblitz.com/edit/simple-dialog-so-3z9big
我可以问你,为什么在订阅中调用时EventEmitter
delete
没有被发出?
答案 0 :(得分:0)
我假设你想知道为什么console.log('confirm action');
没有登录到控制台。
TestComponent
的输出称为@Output() delete
。
在AppComponent中,您引用(confirm)
:
<test (confirm)="onConfirm()"></test>
将其更改为delete
:
<test (delete)="onConfirm()"></test>