[Vuejs]-Using VusJS and Axios, child component is not updating via databinding

0👍

Well, it was as simple as converting the async callback with JSON.parse like this:

this.diagramData = JSON.parse(response.data.level.startNodeData);

Was sending a string and not an object. Hope this helps others 🙂

Leave a comment