[Vuejs]-Web browser complains when trying to create a blob TypeError: Failed to construct 'Blob': The provided value cannot be converted to a sequence

4👍

You must pass an array to blob constructor

let data = new Blob([response.data], { type: 'application/pdf,' });

Docs

Leave a comment