problem description
use the upload upload component of elementUI to upload (picture, pdf) click how to achieve the preview function?
tried the method
try to use the browser function to do local preview ie has a compatibility problem with blob, how do you deal with it?
related codes
handlePreview(file) {
const userAgent = navigator.userAgent;
if (!!window.ActiveXObject || "ActiveXObject" in window) {
alert("")
}else{
window.open(file.url) //blob
}
}