vue文件下载

let a = document.createElement("a")
      a.href = "/static/config/file/产品服务目录.xlsx"
      a.download = "产品服务目录.xlsx"
      a.style.display = "none"
      document.body.appendChild(a)
      a.click()
      a.remove()

  

posted @ 2022-07-12 10:20  磊~~  阅读(15)  评论(0编辑  收藏  举报