[Vuejs]-Ionic Vue IonDatetimeButton inside Modal bugs

1👍

Have you tried moving the <ion-popover> out of the <ion-grid>? Just put it right before or after the <ion-grid>, or all the way to the start or end of the <ion-content> tag (inside it).

0👍

Problem was default value of variable was loading into the date component and it was failing to reconcile the default value before the reactive variable loaded. Once I set the default to DateTime.now().toISO() from luxon it fixed the issue

Leave a comment