Hello I would like know how I can close modal created at modal controller with custom component
async function openSendFinalize() {
const consend = await modalController.create({
component: Corfirm,
componentProps: {
uid: transfering.identifier,
amount: transfering.song,
message: transfering.message,
},
cssClass: "consend__half-container",
showBackdrop: false,
swipeToClose: true,
mode: "ios",
});
return consend.present();
}
at the Confirm.vue component I have no access to modal created from parent component