[Vuejs]-Upload a Base64 String with GraphQL mutation

0👍

I took a different approach and converted a blob into a file:

var file = new File([blob], "file_name", {
  lastModified: new Date(),
});

It’s also necessary to check the backend for file extension restrictions.

Leave a comment