查看此文前应看: https://blog.youkuaiyun.com/qq_33991007/article/details/108384277
封装组件:
<template lang="html">
<div class="">
<el-tree :data="factoryOptions"
:props="defaultProps"
:default-expand-all="dea"
:highlight-current="highlightCurrent"
node-key="value"
:expand-on-click-node="eocn"
@node-click="handleNodeClick">
<span class="span-ellipsis" slot-scope="{node,data}">
<span :title="node.label">{
{node.label}}</span>
</span>
</el-tree>
</div>
</template>
<script>
export default {
data(){
return{
defaultProps: {
children: 'children',
label: 'label'
},
dea:true,
eocn:false,
}
},
p