I am trying to open the blob byte streams in the new tab of the browser. It is works, but I am not sure how to set the file name so that each of the documents will have the unique name when downloaded. Now, the document was defaulted to 'document.pdf' when saved.
var blob = new Blob([response.data], { type: "application/pdf" });
if (blob) {
var fileURL = window.URL.createObjectURL(blob);
window.open(fileURL);
}