You can handle the data like this example:
const alert = await this.alertController.create({
inputs: [
{
name: 'name',
type: 'text'
}],
buttons: [
{
text: 'Ok',
handler: (data) => {
console.log(data);
}
}
]
});
await alert.present();
You can check this old version from here.