赞
踩
vue中配合el-tooltip实现多余内容使用省略号代替,鼠标移入展示隐藏内容`
.tag {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
<el-tooltip offect="dark" content="展示内容" placement="top" :disabled="isShowTooltip" ><span @mouseenter="mouseEnter($event)" class="tag">内容</span>
</el-tooltip>
没有超出内容则不出现提示框
mouseEnter(e) {
const offsetWidth = e.target.offsetWidth;
const scrollWidth = e.target.scrollWidth;
this.isShowTooltip = scrollWidth <= offsetWidth;
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。