在组建创建成功后调用methods里的方法fn1,失败,提示not a function:
created(){
getData(){}
}
solution:
created(){
this.getData(){}
}
同理,调用vm自身的方法、路由对象,一概加this.
本文共 193 字,大约阅读时间需要 1 分钟。
在组建创建成功后调用methods里的方法fn1,失败,提示not a function:
created(){
getData(){}
}
solution:
created(){
this.getData(){}
}
同理,调用vm自身的方法、路由对象,一概加this.
转载于:https://www.cnblogs.com/alan2kat/p/7384341.html