Axios and VueJS, function(response) is not setting a list
Solution 1:
As I have explained it here, arrow syntax does not bind it's own this, arguments, super, or new.target. Arrow functions are always anonymous. These function expressions are best suited for non-method functions.
Scope of this
changes inside a function() block and it does not refer to the currently executing function, while with arrow function, this
refers to the currently executing function only.