[Vuejs]-Prevent opening the image in browser when drop image file in Vue

1👍

In this case, @drop.stop.prevent required.
The handling will be like:

onDrop(event) {
  const file = event.dataTransfer.files[0];
  // ...
}
``

Leave a comment