downLoadFile(state, res) {
let blob = new Blob([res.data])
let fileName = res.headers["content-disposition"].split("''")[1];
const link = document.createElement('a')
link.style.display = 'none'
link.href = URL.createObjectURL(blob)
link.setAttribute('download', decodeURI(fileName))
document.body.appendChild(link)
link.click()
},
博客围绕前端开发展开,涉及Vue.js和JavaScript相关内容,Vue.js是前端开发常用框架,JavaScript是前端开发核心语言,二者在前端开发中发挥重要作用。
3392

被折叠的 条评论
为什么被折叠?



