📜  离子吐司 - TypeScript 代码示例

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

代码示例1
constructor(public toastController: ToastController) {}

async presentToast() {
  const toast = await this.toastController.create({
    message: 'Your settings have been saved.',
    duration: 2000
  });
  toast.present();
}