element ui 失去焦点的方法
时间: 2023-10-12 18:11:48 浏览: 67
Element UI 自定义正则表达式验证方法
在 Element UI 中,可以使用 ref 属性来获取组件实例,然后调用其 blur() 方法来使组件失去焦点。例如,对于 Input 组件:
```
<template>
<el-input ref="myInput" v-model="inputValue"></el-input>
</template>
<script>
export default {
data() {
return {
inputValue: ''
}
},
methods: {
blurInput() {
this.$refs.myInput.blur()
}
}
}
</script>
```
在需要失去焦点的时候,调用 blurInput 方法即可。
阅读全文