[Vuejs]-How to full state before going throw script in component vue

0👍

if you have difficulties with timings and async tasks, why don’t you use async/await?

you want to wait in a async function (for example calling a backend for data) till the data is fetched. then you want to manipulate/delete/change/add, do what ever you want with that data and display the result on screen.

the point is, Vue is a reactive Framework, which means it rerenders (if the setup is correct made) the content by itself after what ever calculation is finished. so don’t worry about something like that.

to be honest, the question is asked really weird. and your code is hard to read. sometimes moving two steps back and try a other way isn’t false as well.

Leave a comment