报错写法如下
<div
v-for="(item, index) in commandList"
:key="index"
class="item"
>
<el-input v-model="item" placeholder="请输入内容"></el-input>
</div>
报错内容如下
You are binding v-model directly to a v-for iteration alias.
This will not be able to modify the v-for sourc
e 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.
报错内容为: 你将v-model直接绑定到v-for迭代别名。这将无法修改v-for源数组,因为写入别名就像修改函数局部变量一样。考虑使用一个对象数组并在对象属性上使用v-model。
原因
v-model不可以直接修改 v-for循环迭代时别名上的数据
, 但是, 可以通过index下标来引用所需的数据
, 可以达到相同目的
解决
<div
v-for="(item, index) in commandList"
:key="index"
class="item"
>
<el-input
v-model="commandList[index]"
placeholder="请输入内容"
></el-input>
</div>
网友评论