vue下载文件

    
      let url = window.URL.createObjectURL(new Blob([接口返回的数据]))
      let link = document.createElement('a')
      link.style.display = 'none'
      link.href = url
      link.setAttribute('download', ‘下载文件名称’)
      document.body.appendChild(link)
      link.click()

你可能感兴趣的:(vue下载文件)