vue 下载本地excel模板
2021-01-28 本文已影响0人
zhudying
vue-cli3.0+ 下,如果将 excel 模板放在前端项目中,需要注意路径问题
- 将excel 模板放在public 文件夹下,避免打包
- 使用 a 标签或 window.open 下载模板,注意 路径为 ./template.xlsx ,excel在public下
<a href=" ./template.xlsx " ></a>
//或
window.open("./template.xlsx", "_blank")
注: 线上环境使用绝对路径
<a href=" /template.xlsx " ></a>