vue el-table 超出隐藏移入弹窗显示

场景

处理空间有限或者需要展示详细但非即时必要信息

效果如下

关键代码

html 复制代码
<el-table-column show-overflow-tooltip prop="demo" label="label-name" width="120"></el-table-column>

完整案列

html 复制代码
<template>
  <div class="container">
    <el-table :data="demoList">
      <el-table-column label="姓名" prop="name" width="90"></el-table-column>
      <el-table-column label="性别" prop="sex" width="80"></el-table-column>
      <el-table-column label="年龄" prop="age" width="70"></el-table-column>
      <el-table-column show-overflow-tooltip prop="demo" label="label-name" width="120"></el-table-column>
    </el-table>
  </div>
</template>
javascript 复制代码
<script>
export default {
  data() {
    return {
      demoList: [
        {
          name: '张三',
          sex: '男',
          age: '18',
          demo: 'show-overflow-tooltip demo',
        },
      ],
    }
  },
}
</script>

完结!!!

相关推荐
yuanyxh7 小时前
Mac 软件推荐
前端·javascript·程序员
万少7 小时前
AtomCode开发微信小程序《谁去呀》 全流程
前端·javascript·后端
学Linux的语莫10 小时前
Vue 3 入门教程
前端·javascript·vue.js
怕浪猫10 小时前
第一章、Chrome DevTools Protocol (CDP) 详解
前端·javascript·chrome
qq43569470112 小时前
Vue04
前端·vue.js
Yeats_Liao13 小时前
Feed流系统设计(三):数据模型与存储设计,从表结构到Redis收件箱
java·javascript·redis
我是真菜13 小时前
彻底理解js中的深浅拷贝
前端·javascript
尽兴-15 小时前
4.1 智能体核心:Agent、Sub-Agent、ReAct、规划执行
前端·javascript·react.js·agent·react·subagent
万物更新_15 小时前
vue框架
前端·javascript·vue.js·笔记
Richar15 小时前
Object.freeze()注意事项
前端·javascript