首先是按钮

<el-button style="margin-left: 10px;" size="big" type="success" @click="importTemplate">下载导入模板</el-button><br/>

再是调用的方法

// 获取导入文件模板
function importTemplate(){
  const a = document.createElement('a')
  a.href = "/importLocalimage.xlsx"
  a.download = "导入模板.xlsx"
  a.style.display = 'none'
  document.body.appendChild(a)
  a.click()
  document.body.removeChild(a)
}

把文件放在public下

通过路径可以直接访问。