// 在线预览文件
let file = url;
let lastIndex=file.lastIndexOf(".");
let suffix=file.substring(lastIndex+1);
//文件格式是word文档、ppt、excel文件文件时
if(suffix=='doc'||suffix=='docx'||suffix=='ppt'||suffix=='xls'||suffix=='xlsx'){
let fileUrl=encodeURIComponent(file)
//使用Office Web查看器
let officeUrl = 'http://view.officeapps.live.com/op/view.aspx?src='+fileUrl
window.open(officeUrl,'_target');
}else{
//其他文件格式比如pdf、图片、html
window.open(file);
}
// 下载文件
<a :href="url">下载文件</a>