一般vue項(xiàng)目都會(huì)存在一個(gè)public文件夾葵姥,里面存放公共數(shù)據(jù)紊浩,單頁面應(yīng)用所需要的ico等旭等,
public下的static文件夾里面可存放靜態(tài)文件酌呆,一般用于存儲(chǔ)靜態(tài)模板等等,將所需模板存放在static下面搔耕;(項(xiàng)目打包后會(huì)直接放在打包后的dist文件夾下面的static文件夾里面)
對(duì)應(yīng)下載模板對(duì)應(yīng)函數(shù):
function downloadTem() {
let a = document.createElement('a');
a.href = '/static/template.xlsx';
a.download = 'xxx模板.xlsx';
a.style.display = 'none';
document.body.appendChild(a);
a.click();
a.remove();
}