查看此代码段
mmethods: {
getCustomers: function(page = 1) {
....
}
},
mounted() {
// Fetch initial results
this.getCustomers();
}
我的问题是那个错误
挂接的钩子中出现错误:“ TypeError:this.getCustomers不是函数”
为什么?
答案 0 :(得分:1)
是methods
,而不是mmethods
,只是一个错字