Skip to content

Instantly share code, notes, and snippets.

View MetaMan13's full-sized avatar
💭
Always learning something new

MetaMan13

💭
Always learning something new
  • Bosnia and Herzegowina
View GitHub Profile
@iDevelopThings
iDevelopThings / DragDrop.vue
Last active July 16, 2024 15:16
Handles drag and drop file upload in VueJS
<!-- USAGE -->
<drag-drop-file-upload ref="dragDropFileUpload" @handleInput="changeImage"></drag-drop-file-upload>
//Handle image change/upload etc
changeImage({file, filePreview}) {
console.log({file, filePreview});
},
//Clear files added/dropped onto component?