Hi I am trying to use a fat arrow function as a method in a vuex
component file:
methods : {
method_1 : () => {console.log(this)}
}
this
returns undefined, though if I use a function() { console.log(this) }
it returns the current vue instance.
Why is this?