From here, it seems that if the components has supportsPreview prop enabled, the component will not emit 'change' event when dropping a file.
if (this.supportsPreview) { this.loadImage(files[0], prefill || false) } else { if (prefill) { this.$emit('prefill') } else { this.$emit('change', this.image) } }
Drag and drop a file doesn't emit 'change'.
From here, it seems that if the components has
supportsPreview
prop enabled, the component will not emit 'change
' event when dropping a file.if (this.supportsPreview) {
this.loadImage(files[0], prefill || false)
} else {
if (prefill) {
this.$emit('prefill')
} else {
this.$emit('change', this.image)
}
}