vue实现文件下载

实现效果图:点击蓝色文字,下载文件

vue实现文件下载_第1张图片vue实现文件下载_第2张图片

 代码实现:

       
{{ item.name }}
    /** 下载模板操作 */
    downloadExcel(row) {
      const a = document.createElement("a");
      a.href = row.path;//下载文件地址;
      a.download = row.name;//下载文件名字;
      a.style.display = "none";
      document.body.appendChild(a);
      a.click();
      a.remove();
    },

你可能感兴趣的:(vue.js,javascript,前端)