我们改写成 赞 踩 我们在开发过程中会遇到表格内容展示不全的问题 我们改写成 然后在css中加入样式 效果如下 Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。
element ui表格内容超出文本给省略号,鼠标移入元素时展示全部文本内容_elment-ui 文字打点后鼠标移入弹出完整信息
那么我们就需要一个办法让用户看到全部的内容
这时我们能想到的就是el-tooltip
当鼠标引入元素时展示content属性中的内容
那么我们原来的代码是<el-table-column
prop="logNote"
label="描述">
</el-table-column>
<el-table-column label="描述">
<template slot-scope="scope">
<el-tooltip :content="scope.row.logNote" placement="bottom" effect="light">
<el-button class = "keyButton">{{ scope.row.logNote }}</el-button>
</el-tooltip>
</template>
</el-table-column>
.keyButton.el-button{
width: 100%;
overflow:hidden;
text-align: left;
text-overflow:ellipsis;
white-space:nowrap;
border: 0 !important;
background: transparent;
padding: 0 !important;
}
.keyButton.el-button:hover{
border: 0 !important;
background: transparent;
padding: 0 !important;
}