data() {
return {
unitPrice: 0.00,
periodNum: 0,
//totalPrice
}
},
computed:{
totalPrice: ()=>{
return this.periodNum * this.unitPrice;
}
},
methods:{... change periodNum and unitPrice functions here}
我跟随vue doc进行了此操作:更改了periodNum和unitPrice时,计算了totalPrice,但是我在“返回”行出现了问题标题中的错误
答案 0 :(得分:2)
不要使用箭头功能。使用普通的function
或类似的速记:
computed: {
totalPrice() {
return this.periodNum * this.unitPrice;
}
}