el-tree 解决横向滚动条和纵向滚动条问题

<el-tree
	ref="treeRef"
	class="filter-tree"
	:data="data"
	:props="defaultProps"
	default-expand-all
	show-checkbox
	:filter-node-method="filterNode"
/>
.filter-tree {
    
    
	overflow: auto;
}
:deep(.el-tree-node > .el-tree-node__children) {
    
    
	overflow: visible;
}

效果图 未设置固定高度
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/IT_iosers/article/details/126400762