代码:
<el-tree
ref="treeRef"
class="filter-tree"
:data="deptOptions"
:props="defaultProps"
default-expand-all
highlight-current
:expand-on-click-node="false"
:filter-node-method="filterNode"
@node-click="handleDeptNodeClick"
>
<template #default="{ node }">
<span
class="custom-tree-node showname"
:title="node.label"
v-text="node.label">
</span>
</template>
</el-tree>
.showname{
width: 100px; // 定宽
overflow: hidden !important;// 溢出部分隐藏
white-space: nowrap !important;//禁止自动换行
text-overflow:ellipsis !important;// 使溢出部分以省略号显示
display: block !important;
}
效果: