element ui Table组件溢出隐藏,鼠标经过再显示出来
程序员文章站
2022-01-19 19:59:50
...
实现方式:
添加 show-overflow-tooltip 属性给需要的列
实例
<template> <el-table :data="tableData" style="width: 100%"> <el-table-column prop="phone" label="姓名"> </el-table-column> <el-table-column prop="address" label="地址" show-overflow-tooltip></el-table-column> </el-table> </template>
运行实例 »
点击 "运行实例" 按钮查看在线实例