<el-table-column prop="remark" label="下单制作特殊说明"> <template slot-scope="scope"> <el-input type="text" v-model="scope.row.remark"></el-input> </template> </el-table-column>给个默认值
时间: 2023-10-06 22:06:01 浏览: 153
js特效之input默认值
5星 · 资源好评率100%
你可以在定义数据时为 `remark` 设置默认值,如下:
```
data() {
return {
// 其他数据
tableData: [
{
remark: '默认值'
// 其他数据
},
// 其他数据
]
}
}
```
如果需要动态设置默认值,可以在 `created` 生命周期中为 `tableData` 中每个对象的 `remark` 设置默认值,如下:
```
created() {
// 遍历 tableData 数组,为每个对象的 remark 属性设置默认值
this.tableData.forEach(item => {
item.remark = '默认值'
})
}
```
这样在表格中加载时,每个输入框都会有默认值。
阅读全文