以上换成 el ementui input
时间: 2023-08-03 13:09:07 浏览: 239
如果你想使用Element UI的`el-input`组件进行循环遍历,可以按照以下示例进行操作:
```html
<template>
<div>
<el-input v-for="(value, index) in inputValues" :key="index" v-model="inputValues[index]" />
</div>
</template>
<script>
export default {
data() {
return {
inputValues: ['value1', 'value2', 'value3'] // 输入框的初始值
};
}
};
</script>
```
在上面的示例中,我们使用`v-for`指令遍历`inputValues`数组,并使用`el-input`组件来渲染输入框。使用`v-model`指令将每个输入框与对应的数组元素进行双向绑定,以便在用户输入时更新数据。
你可以根据你的实际需求修改`inputValues`数组中的值,它可以是从后端获取的数据,或者是用户输入的数据。
阅读全文