如何删除角度材质模态中按钮上的自动聚焦?

时间:2019-02-12 07:22:27

标签: css angular dialog angular-material angular-cdk

当我们将按钮放置在角度材质对话框中时,它会自动使该模式中的第一个按钮聚焦。

Stackblitz example

1 个答案:

答案 0 :(得分:4)

您可以在对话框中添加autofocus = false属性以禁用自动对焦。

示例如下:

const dialogRef = this.dialog.open(DialogOverviewExampleDialog, {
   width: '250px',
   data: {name: this.name, animal: this.animal},
   autoFocus: false 
});