We are using Vue
and arrow function on methods. Since arrow function has no this
keyword, how can we access the data
like list
or object
export default {
data() {
return {
list: [],
object: {},
}
},
methods: {
onSubmit: (e) => {
//How can access this here?
//Im trying to access this.list
console.log(this);
}
},
}
Thanks in advance.