Bootstrap

vue 后台接口返回文件流 前端实现文件下载

html文件 绑定点击事件

<el-tag @click="downloadCsv">
        <i class="el-icon-download" />
        <span>点击下载模版</span>
</el-tag>

VUE > methods里定义方法

  // 下载模版
 downloadCsv() {
   
      this.$axios.get('/api/company', {
    responseType: 'blob' }).then(data 
;