我有一个使用以下代码打开对话框的组件:
// my.component.ts
const editorRef = this.editor.open(MyDialogComponent, {});
我了解可以使用以下代码将其关闭:
// my.component.ts
editorRef.close();
但是如何从MyDialogComponent
iself内部将其关闭?
尝试了一下,但是没有用:
// my-dialog.component.ts
this.close();
有什么想法吗?