[Vuejs]-VueJs Observer instead of Object

0👍

You might parse the observable before sending it to the Axios.

const parsedIngredient = JSON.parse(JSON.stringify(this.ingredient))

Then send parsedIngredient to the server.

Leave a comment