template
<a ref="download" v-show="false" :href="downloadUrl" download>download</a>
script
download () {
// Dynamic settings download link
this.downloadUrl = 'http://xxx'
// If setTimeout is not set, the download file will be empty
setTimeout(() => {
this.$refs.download.click()
}, 200)
}
网友评论