<td><input type="text" class="form-control" v-model="result[product.id]" /></td>
<td>{{product.unit}}</td>
<td><input type="text" class="form-control" v-model="price[product.id]" v-on:keyup="priceChange" :product_id="product.id" /></td>
<td><input type="text" class="form-control" v-model="sum[product.id]" /></td>
methods: {
priceChange: function(){
let product_id=event.target.getAttribute('product_id');
let price=this.price[product_id];
let count=this.result[product_id];
let sumres=price*count;
console.log(sumres);
this.sum[product_id]=sumres;
}
},
В консоли отображается сразу, при сабмите формы тоже вижу, но в интерфейсе только после 2 нажатия на клаву.
Как сделать с 1 раза, чтобы значение в sum подставлялось из калькуляции?