我有一张表,其中的一列存储着输入
<b-table bordered stripped
show-empty
empty-text="Your cart is empty"
class="p-2"
:fields="fields"
:items="lines">
<template slot="quantity" slot-scope="line">
<input type="number" class="form-control-sm"
style="width:5em"
v-model="qvalue"
v-on:input="handleQuantityChange($event,line.item)"/>
</template>
<template slot="product" slot-scope="line">
{{line.item.product.name}}
</template>
<template slot="price" slot-scope="line">
{{ line.item.product.price| currency }}
</template>
<template slot="subtotal" slot-scope="line">
{{ (line.item.quantity*line.item.product.price) | currency }}
</template>
<template slot="remove" slot-scope="line">
<b-button size="sm" variant="danger" v-on:click="handleRemove(line)">
Remove
</b-button>
</template>
</b-table>
问题在于第一列和qvalue绑定,当我添加多个值时:两行中的值相同。如何获得两个不同的值?方法如下:
methods:{
...mapMutations({
change:"cart/changeQuantity",
remove: "cart/removeProduct"
}),
handleQuantityChange(e,line){
if (e.target.value >0){
this.qvalue = e.target.value;
} else {
this.qvalue = 1;
e.target.value = this.qvalue
}
this.change({line,quantity:e.target.value})
},
handleRemove(line){
this.remove(line.item);
}
}
我理解v建模qvalue不好,但是正确的方法是什么?
答案 0 :(得分:1)
您可以使用v-model
代替:value="line.item.quantity"
。
因此您的输入应如下所示:
<input type="number" class="form-control-sm"
style="width:5em"
:value="line.item.quantity"
v-on:input="handleQuantityChange($event,line.item)"/>
Here是有关使用vuex处理表单的更多信息。