如果你遇到了vue项目element使用el-tooltip时,超出时显示tooltip提示,不超出内容则不显示,请看下面教程。
超出时会显示…,鼠标悬浮出现提示内容,没有超出时,鼠标悬浮不会显示,请看图
直接上代码
<el-tooltip
:content="str"
:disabled="isShowTooltip"
effect="dark"
placement="top"
>
<div
@mouseover="onMouseOver(str)"
style="overflow: hidden; text-overflow: ellipsis; white-space: nowrap;"
>
<span :ref="str">{{`${str}`}}</span>
</div>
</el-tooltip>
data中:
data () {
return {
isShowTooltip: false
}
}
methods中:
methods: {
onMouseOver (str) {
const tag = this.$refs[str]
const parentWidth = tag.parentNode.offsetWidth
const contentWidth = tag.offsetWidth
this.isShowTooltip = contentWidth <= parentWidth
}
}
|