赞
踩
<el-select multiple clearable filterable collapse-tags :popper-append-to-body="false" placeholder="请选择" v-model="value" class="searchFormItemWidth" style="width: 200px;" ref="selectRef" @mouseleave.native="closeSelect" > <el-option v-for="(item, _idx) in styleTags" :key="_idx" :label="item" :value="item" ></el-option> </el-select>
methods: {
closeSelect() {
// 注意 selectRef 要和 ref="selectRef" 对应
this.$refs.selectRef.$el.querySelector('.el-select-dropdown').style.display = 'none';
// 隐藏下拉框后 同时 使 input 失去焦点
this.$refs.selectRef.blur()
},
}
<style lang="scss" scoped>
::v-deep .searchFormItemWidth .el-select-dropdown {
margin-top: 0;
margin-left: -5px;
}
</style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。