Skip to content Skip to sidebar Skip to footer

For Loop Inside A Method Using Vuejs

I have a method in Vuejs which updates a set of variables based on a selection. methods: { updateChart(){ this.chart1.series[1].data = [this.$store.state.selectedcities[0].va

Solution 1:

n should be an array and loop through it using forEach method like :

var n = [1,2,3,5,7,8,9,11,12,13,14,16,17,18,20,21,22]
    n.forEach(i=>{
          this.chart1.series[i].data = [this.$store.state.selectedcities[0].value[i]];
            })

ُEDIT

var m = [1,3,6]
 m.forEach(k=>{
     n.forEach(i=>{
          this.chart[k].series[i].data = 
        [this.$store.state.selectedcities[k].value[i]];
            })

})

Solution 2:

You could use foreach.

updateChart() {
    var n = [1,2,3,5,7,8,9,11,12,13,14,16,17,18,20,21,22];

    n.forEach(number => {
        this.chart1.series[number].data = [this.$store.state.selectedcities[0].value[number]];
    });
}

Post a Comment for "For Loop Inside A Method Using Vuejs"