<el-tree
ref="tree"
:highlight-current="true"
:props="treeProps"
:data="treeData"
:render-content="renderContent"
:filter-node-method="filterNode"
@current-change="treeSelect"
></el-tree>
//css样式代码
.el-tree {
min-width: 100%;
display: inline-block;
}
.tree {
overflow:auto;
max-height: 200px;
}
效果图如下:

版权声明:本文为weixin_45442630原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。