其他分享
首页 > 其他分享> > vue文件下载

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()

  

标签:appendChild,文件,vue,xlsx,href,static,document,目录,下载
来源: https://www.cnblogs.com/webljl/p/16469052.html