[Ionic 4] Get data in modal passed with componentProps

Like this:

// Show modal
const modal = await this.modalCtrl.create({
  component: ModalPage
});
modal.present();

// Get returned data
const { data } = await modal.onWillDismiss();
8 Likes