📜  ionic 3 警报背景关闭 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:33.453000             🧑  作者: Mango

代码示例1
let alert = this.alertCtrl.create({
    title: 'New Friend!',
    subTitle: 'Lorem ipsum',
    buttons: ['OK'],
      // line BELOW
    enableBackdropDismiss: false // <- Here! :)
});

alert.present();