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).
- [Vuejs]-Vue2: About data binding, when are references updated?
- [Vuejs]-Adding Class on Scroll Vanilla JS
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
- [Vuejs]-How can I bind dynamic fields from server with vuejs
- [Vuejs]-Can't get data of computed state from store – Vue
Source:stackexchange.com