[Vuejs]-Vue.js read blob as object/string to app-variable

0👍

Solved the problem with:

response.data.text().then(text => {
    this.modules[current]['results']['text']['value'] = text
});

Leave a comment