el-input 清除内容
时间: 2023-07-08 20:42:20 浏览: 101
删除输入框的文字
5星 · 资源好评率100%
你可以通过调用 `this.$refs.yourInputRefName.clear()` 方法来清除 `el-input` 中的内容,其中 `yourInputRefName` 是你给 `el-input` 设置的 `ref` 属性的值。例如:
```html
<el-input ref="myInput" v-model="inputValue"></el-input>
```
```javascript
methods: {
clearInput() {
this.$refs.myInput.clear();
}
}
```
在上面的例子中,`clearInput` 方法被调用时会清除 `el-input` 中的内容。
阅读全文