关于前端:Vue-下载本地静态资源

33次阅读

共计 388 个字符,预计需要花费 1 分钟才能阅读完成。

下载本地的 exe, 咱们要把须要下载的动态资源放在 static 文件夹下

<a href="/static/codebase/WebComponentsKit.exe" download="WebComponentsKit.exe" target="_blank"> 测试 </a>

模仿 a 标签办法

<el-button @click="download">test</el-button>
downloadClick(row) {var a = document.createElement('a')
    a.setAttribute('href', "/static/codebase/WebComponentsKit.exe")
    a.setAttribute('download' ,"WebComponentsKit.exe")
    document.body.appendChild(a)
    a.click()~~~~}

正文完
 0