作者: 草帽lufei | 来源:发表于2019-12-26 14:04 被阅读0次

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)
}

相关文章

网友评论