现在遇到一个问题,我在表单里写了一些验证事件,在没有v-for插入数据的时候还能验证,但是v-for插入数据后,无论表单有没有字符打印的都是undefined,那就意味着我写的验证都无效了,求解?
有v-for的时候打印undefined
<div class="edit-form" v-for="(item,index) in listData" :key="index">
<div>
<input type="text" @blur="onLeast1()" ref="Least1" v-model="item.name" >
</div>
</div>
onLeast1() {
if (this.$refs.Least1.value !== '') {
console.log(this.$refs.Least1.value)
return false;
} else {
console.log(this.$refs.Least1.value)
return false;
}
}//有v-for数据的时候就是undefined
没有v-for正常打印
蝴蝶刀刀
相关分类