报错:please transfer a valid prop path to form item!
错误主要在 el-form-item 设置 prop 的时候出错el-form-item 里面的循环prop名字,需要 和form列表中的属性名称一致,这样才能确保组件的统一性。<template v-for="(person,index) in temp"><el-form-item prop="name"><el-in...
·
错误主要在 el-form-item 设置 prop 的时候出错
el-form-item 里面的循环prop名字,需要 和form列表中的属性名称一致,这样才能确保组件的统一性。
<template v-for="(person,index) in temp">
<el-form-item prop="name">
<el-input v-model="person.name"></el-input>
</el-form-item>
<el-button @click="removeDomain(index)" size="small">-</el-button>
</template>
属性值为 person.name
prop='name'
更多推荐
已为社区贡献1条内容
所有评论(0)