Vue 下载本地静态资源

下载本地的exe,我们要把需要下载的静态资源放在static文件夹下

测试

模拟a标签方法

test
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.js)