我需要将所选的下拉值放入json对象中。我尝试了此代码,但未显示我选择的值。
<select class="form-control select2 dynamic" style="width: 100%;"
name="customer" id="customer" v-model="sale.customer">
<option disabled value="">Please Select One</option>
<option :value="users.name" v-for="user in users">{{ user.name }}</option>
</select>
我想将此选定的值添加到此json对象中。
sale:
{
customer: '',
}
这个数组我曾经用来从用户表中获取所有用户。
users: [],
我想将此选定的值添加到客户对象中。谁能知道如何在vuejs中解决此错误