前端下载

111 阅读1分钟

vue2下纯前端下载文件。public-static-(放置文件);

<button @click="projectAdd">下载模板

projectAdd(){

const link = document.createElement('a')
    
link.style.display = 'none'
    
link.setAttribute('href', '/static/测试工作量.xlsx')
    
link.download = '工作量模板.xlsx' //下载的文件名
    
document.body.appendChild(link)
    
link.click()
    
document.body.removeChild(link)
    
},