赞
踩
html部分
其中: @node-click=“handleClickChange”, current-node-key=“海淀区”
和highlight-current为关键代码
<el-tree
:data="treeData"
check-strictly
ref="tree"
:props="defaultProps"
@node-click="handleClickChange"
node-key="province"
:default-expanded-keys="['北京市','海淀区']"
current-node-key="海淀区"
highlight-current
/>
js部分
在点击事件里将默认高亮的节点置空
handleClickChange(data, checked, indeterminate) {
this.$nextTick(() => {
this.$refs["tree"].setCurrentKey("");
});
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。