// 定义单元格文本超出不换行 .el-table .cell { overflow: hidden !important; white-space: nowrap !important; } <!--table-tooltip.vue--> <template> <!-- 文案溢出,显示tooltip --> {{ tableCellTooltipText }} </template> export default { props: { tableCellMouse: { type: Object...