I can’t seem to get hide() to work, but what’s working for me is… (although I’m using q-popup-edit)
<q-popup-edit ref=“popupStartDate" v-model=“props.row”
<q-date v-model=“props.row.startDate” @input="$refs.popupStartDate.set()"
Also took me some time to realize that if I set the v-model in the q-popup-edit to the same as the v-model in the q-date, the value would immediately change back to the original value after selecting it.