当我们将按钮放置在角度材质对话框中时,它会自动使该模式中的第一个按钮聚焦。
答案 0 :(得分:4)
您可以在对话框中添加autofocus = false
属性以禁用自动对焦。
示例如下:
const dialogRef = this.dialog.open(DialogOverviewExampleDialog, {
width: '250px',
data: {name: this.name, animal: this.animal},
autoFocus: false
});