vue在钩子中引用方法不成功

在组建创建成功后调用methods里的方法fn1,失败,提示not a function:

created(){

  getData(){}

}

solution:

created(){

  this.getData(){}

}

同理,调用vm自身的方法、路由对象,一概加this.

原文地址:https://www.cnblogs.com/alan2kat/p/7384341.html