el-input v-model的值删除
时间: 2023-10-09 22:12:29 浏览: 210
vue中v-bind 、 v-model 案例
要删除el-input v-model的值,可以通过将v-model绑定的数据设置为null或空字符串来实现。例如:
```html
<el-input v-model="inputValue"></el-input>
<button @click="clearInput">Clear Input</button>
```
```javascript
export default {
data() {
return {
inputValue: ''
}
},
methods: {
clearInput() {
this.inputValue = ''
}
}
}
```
在上面的示例中,点击“Clear Input”按钮会将inputValue设置为空字符串,从而清空el-input中的值。
阅读全文