Vue 下载本地静态资源
Posted 一统
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 下载本地静态资源相关的知识,希望对你有一定的参考价值。
下载本地的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()~~~~
}
以上是关于Vue 下载本地静态资源的主要内容,如果未能解决你的问题,请参考以下文章
vue-cil和webpack中本地静态图片的路径问题解决方案