vue2 在methods 中无法获取this对象

在methods中使用箭头函数无法获取this
ExamName:()=> {
console.log(this);
}
这样就行了:
ExamName:function() {
console.log(this);
}