Я пытаюсь изменить переменную по часам и изменить ее на html
<p>{{customer.creditsLeft}}</p>
и vue
data() {
customer: {},
}
watch: {
'$store.state.jobs.listBooking.customer': function (newVal) {
this.customer.creditsLeft = newVal;
console.log('current credit now' + this.customer.creditsLeft);
return this.customer.creditsLeft;
}
},
console.log просыпается, но кредиты остаются без изменений. я новый би в вю. Пожалуйста, помогите мне