Vuetify progress bar does not synchronize the value
问题 I have an example that replicates what I'm actually doing. When a new item pushed on the array, the counter is increased and set the value to the progress. For the example, I prepared a JSFiddle: here new Vue({ el: '#app', data () { return { valueDeterminate: 0, total: 1000, timeOut: 0, iteraciones: 1000 } }, methods: { async Click() { var arr = []; var sum = 0; this.valueDeterminate = 0; await this.forEach(this.iteraciones, async (i) => { await this.Sleep(1); arr.push(1); sum++; this