download.js 250 Bytes
Newer Older
yanzhongrong's avatar
yanzhongrong committed
1
export default function(res, type, fileName = '') {
yanzhongrong's avatar
yanzhongrong committed
2 3 4 5 6 7
  let blob = new Blob([res], { type: `application/${type}` })
  let a = document.createElement('a')
  let url = window.URL.createObjectURL(blob)
  a.href = url
  a.download = fileName
  a.click()
yanzhongrong's avatar
yanzhongrong committed
8
}