For me worked the following: I added: v-slot=“scope” to the q-popup-edit
<q-popup-edit v-model=“initialValue” v-slot=“scope” buttons @save=“save”>
and then I replaced my v-model inside q-input to this:
<q-input v-model=“scope.value” >
For me worked the following: I added: v-slot=“scope” to the q-popup-edit
<q-popup-edit v-model=“initialValue” v-slot=“scope” buttons @save=“save”>
and then I replaced my v-model inside q-input to this:
<q-input v-model=“scope.value” >
I am using QUploader inside Q-Popup-edit for making “editable” Datatables.
When the file is added with (+) button the popup is closing. When I am adding the file via Drag&Drop it is not closing, but when I click the “remove” button the QUloader is still closing.
I tried to use @addes.stop and @added.prevent in the QUploader but received $event.stopPropagation is not a function".
Any ideas how to prevent QPopup from closing?
Thank you.