Skip to content

Instantly share code, notes, and snippets.

@annibuliful
Created April 9, 2020 07:05
Show Gist options
  • Save annibuliful/e2a73e6a0c334d6eecc76f209bb90534 to your computer and use it in GitHub Desktop.
Save annibuliful/e2a73e6a0c334d6eecc76f209bb90534 to your computer and use it in GitHub Desktop.
handleUpload(files){
if (event.target.files && event.target.files[0]) {
const file = event.target.files[0];
const reader = new FileReader();
reader.onload = e => this.imageSrc = reader.result;
reader.readAsDataURL(file);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment