错误主要在  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'

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐