I have the below variable in my data:
data: function () {
return {
myVariable: false,
}
}
How do I access this variable from with a looping function, like below?
anArray.forEach(function(item) {
this.myVariable = true;
// do something
});
I get 'this' is undefinded as its looking in the current loop function, not the vuejs object.