Hi !
In Ionic 6 with vue3, i used this for close all modals :
const overlays = document.querySelectorAll('ion-modal');
const overlaysArr = Array.from(overlays);
overlaysArr.forEach( o => o.dismiss() );
But in Ionic 7, it doesn’t work. And i don’t understand why. Any ideas ?
Thanks !