<div ref="el-tabs__content">
<el-select ref="select"></el-select>
</div>
methods:{
closeOptions() {
// 曲线解决滚动下拉框穿出页面
let box = document.querySelector('.el-tabs__content')
box.onscroll = () => {
this.$refs.select.blur() // box滚动时select失焦 隐藏options
}
},
}
mounted(){
this.closeOptions()
}
下拉框滑动穿透页面-曲线救国
于 2022-12-12 11:59:02 首次发布