vue表单input 框使用@blur事件
<el-row class="sign_item">
<el-col :span="5" class="c_title">搜索内容:</el-col>
<el-col :span="18">
<el-input
placeholder="项目编号或者项目名称" clearable
prefix-icon="el-icon-search"
value=""
v-model="searchtext"
@blur="search_blur($event)"
class="c_input">
</el-input>
</el-col>
</el-row>
vue中使用@blur获取input val值文章来源地址https://www.toymoban.com/news/detail-511672.html
search_blur(e){
let search_value=e.target.value;
console.log(search_value);
},
文章来源:https://www.toymoban.com/news/detail-511672.html
到了这里,关于vue element-ui blur触发事件 vue中使用@blur获取input val值 elementui+vue的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!