I get an error: "Uncaught TypeError: this.thePerson is not a function" when I run this:
var myApp = new Vue({
el: "#app",
data: {
person: [this.thePerson()]
},
methods: {
thePerson: function() {
return {
personNickname: "Bob",
personOwes: 0,
paymentType: {
card: true,
cash: false
}
};
}
}
});
I can't figure out why!
P.S. I realize this is weird looking code but there's a reason why I'm using a function to return the array contents...
I get an error: "Uncaught TypeError: this.thePerson is not a function" when I run this:
var myApp = new Vue({
el: "#app",
data: {
person: [this.thePerson()]
},
methods: {
thePerson: function() {
return {
personNickname: "Bob",
personOwes: 0,
paymentType: {
card: true,
cash: false
}
};
}
}
});
I can't figure out why!
P.S. I realize this is weird looking code but there's a reason why I'm using a function to return the array contents...
Share Improve this question asked Aug 14, 2018 at 2:13 portnoy-the-elderportnoy-the-elder 1411 gold badge2 silver badges9 bronze badges2 Answers
Reset to default 6Turn data
into a function.
var myApp = new Vue({
el: "#app",
data: function() {
return {
person: [this.thePerson()]
}
},
methods: {
thePerson: function() {
return {
personNickname: "Bob",
personOwes: 0,
paymentType: {
card: true,
cash: false
}
};
}
}
});
Do you try, assigning persons value on Vue's created method ?
according to your example:
var myApp = new Vue({
el: "#app",
data: {
person: []
},
methods: {
thePerson: function() {
return {
personNickname: "Bob",
personOwes: 0,
paymentType: {
card: true,
cash: false
}
};
}
},
created(){
this.person.push(this.thePerson())
}
});