报错内容: You are binding v-model directly to a v-for iteration alias. This will not be able to modify the v-for source array because writing to the alias is like modifying a function local variable. Consider using an array of objects and use v-model on an object property instead.
代 码 <el-form-item label="类别:">
<el-input v-model="carbonObject.value"></el-input>
</el-form-item>
修改 <el-form-item label="类别:">
<template v-for="(item,index) in carbonObject.value">
<el-input v-model="carbonObject.value[index]"></el-input>
</template>
</el-form-item>
carbonObject.value是个数组 不能直接绑定到v-model上,用v-for
参考链接 https://blog.csdn.net/qq_33769914/article/details/122449814