UtilsopenBase64ImageOn this pageopenBase64Image新窗口打开图片 examples 在新窗口预览图片(支持base64) source code const img = document.createElement('img');//图片路径img.src = URL.createObjectURL(files[0]);const newWindow = window.open('');newWindow.document.write(img.outerHTML);newWindow.document.close();