欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue字段过长显示...,鼠标悬停显示全部

程序员文章站 2022-04-29 12:27:09
...

效果图

vue字段过长显示...,鼠标悬停显示全部

show-overflow-tooltip

<el-table-column show-overflow-tooltip>     
    <template slot-scope="scope">
          <span class="over-content">{{}}</span>
        </template>
 </el-table-column>

css

.over-content {
  width: 80;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
相关标签: vue vue字段过长