在 el-popover 中的el-input一输入中文el-popover就消失
时间: 2024-10-09 08:07:10 浏览: 75
在Element UI的`el-popover`组件中,如果配合`el-input`使用,并且输入内容包含中文,有时候弹出层可能会因为浏览器的自动检测滚动而自动关闭。这是因为中文字符通常占用多个CSS字符编码单位(如UTF-16),可能导致输入框的高度变化,触发了`el-popover`的滚动判断条件。
解决这个问题的一个常见做法是调整`el-popover`的`offset`属性,确保它不会受到输入内容长度影响而自动关闭。另外,可以尝试设置`popper-class`属性,添加自定义样式覆盖默认的行为,比如阻止滚动监听:
```html
<template>
<div>
<el-input v-model="inputValue" placeholder="请输入"></el-input>
<el-popover
placement="bottom"
:width="200"
offset="8 0"
popper-class="custom-popover"
:content="popoverContent"
>
<span slot="reference">更多内容</span>
</el-popover>
</div>
</template>
<script>
export default {
data() {
return {
inputValue: '',
popoverContent: '这里是一些详细的内容',
};
},
};
</script>
<style scoped>
.custom-popover {
overflow-y: auto; /* 添加此行以防止滚动关闭 */
}
</style>
```
阅读全文