See this snippet
mmethods: {
getCustomers: function(page = 1) {
....
}
},
mounted() {
// Fetch initial results
this.getCustomers();
}
My problem is that error
Error in mounted hook: "TypeError: this.getCustomers is not a function"
Why?
mmethods:instead ofmethods:?