Skip to content

Instantly share code, notes, and snippets.

@railsstudent
Last active June 16, 2020 03:59
Show Gist options
  • Save railsstudent/390bafc8d404678f9934b5719e5cbe75 to your computer and use it in GitHub Desktop.
Save railsstudent/390bafc8d404678f9934b5719e5cbe75 to your computer and use it in GitHub Desktop.
Use FileSaver to open File object
openFile(name: string) {
if (this.formData[name]) {
const file = this.formData[name] as File
if (file) {
const { name: filename } = file
saveAs(file, filename)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment