赞
踩
elementv UI 中的Tree组件实现定位展开某一个父节点并选中该父节点下的某一个子节点(或者选中该父节本身)如图所示:
- <template>
- <div>
- <el-tree :data="deviceList"
- ref="tree"
- :props="defaultProps"
- node-key="id"
- :default-expanded-keys="expendArr"
- highlight-current
- @node-click="handleNodeClick">
- </el-tree>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- deviceList: [
- {
- id:'0',
- label:'父节点1',
- children:[
- {
- id:'0-0',
- label:'子节点1-1',
- },
- {
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。