[Vuejs]-Fill in table after form submit in vuejs

0👍

If your response is coming as an array of single object

you can push it directly to info

axios.get("https://localhost:44331/Api/ShowRecipes/"+ this.ingredientCategory + "/" + this.ingredientCategory1 )
.then(response => this.info.push(response.data[0]))

Leave a comment