elementui的tree默认高亮显示无效的问题

elementui的tree默认高亮显示无效的问题

必须要的属性:

1, 设置node-key 属性

2, 使用nextTick

3, 设置 highlight-current 属性

4, this.$refs.xxx.setCurrentKey('id名称')

复制代码
<template>
  <div class="onlineText">
    <el-tree :data="data" :props="defaultProps" @node-click="handleNodeClick" default-expand-all 
    ref="treeList" node-key="id" highlight-current></el-tree>
  </div>
</template>

<script>
export default {
  name: "onlineText",
  data(){
    return{
      data: [{
          id: 1,
          label: '一级 1',
          children: [{
            id: 4,
            label: '二级 1-1',
            children: [{
              id: 9,
              label: '三级 1-1-1'
            }, {
              id: 10,
              label: '三级 1-1-2'
            }]
          }]
        }, {
          id: 2,
          label: '一级 2',
          children: [{
            id: 5,
            label: '二级 2-1'
          }, {
            id: 6,
            label: '二级 2-2'
          }]
        }, {
          id: 3,
          label: '一级 3',
          children: [{
            id: 7,
            label: '二级 3-1'
          }, {
            id: 8,
            label: '二级 3-2'
          }]
        }],
        defaultProps: {
          children: 'children',
          label: 'label'
        }
    }
  },
  methods:{
    handleNodeClick(data) {
        console.log(data);
      }
  },
  mounted(){
    this.$nextTick(()=>{
      this.$refs.treeList.setCurrentKey('5')
    })
  }

};
</script>

<style lang="less">
.onlineText{
  
}
</style> 

这种就是设置默认值,也就是说不管你选择了哪个,刷新以后还是默认值。如果你想刷新以后保持你上一个点击的,就需要用缓存

复制代码
<template>
  <div class="onlineText">
    <el-tree :data="data" :props="defaultProps" @node-click="handleNodeClick" default-expand-all 
    ref="treeList" node-key="id" highlight-current></el-tree>
  </div>
</template>

<script>
export default {
  name: "onlineText",
  data(){
    return{
      data: [{
          id: 1,
          label: '一级 1',
          children: [{
            id: 4,
            label: '二级 1-1',
            children: [{
              id: 9,
              label: '三级 1-1-1'
            }, {
              id: 10,
              label: '三级 1-1-2'
            }]
          }]
        }, {
          id: 2,
          label: '一级 2',
          children: [{
            id: 5,
            label: '二级 2-1'
          }, {
            id: 6,
            label: '二级 2-2'
          }]
        }, {
          id: 3,
          label: '一级 3',
          children: [{
            id: 7,
            label: '二级 3-1'
          }, {
            id: 8,
            label: '二级 3-2'
          }]
        }],
        defaultProps: {
          children: 'children',
          label: 'label'
        },
        defaultId:'5'
    }
  },
  methods:{
    handleNodeClick(data) {
        console.log(data);
        sessionStorage.setItem("defaultId",data.id)

      }
  },
  mounted(){
    this.$nextTick(()=>{
      if(sessionStorage.getItem("defaultId")){
        this.$refs.treeList.setCurrentKey(sessionStorage.getItem("defaultId"))
      }else{
        this.$refs.treeList.setCurrentKey(this.defaultId)
      }
    })
  }

};
</script>

<style lang="less">
.onlineText{
  
}
</style> 
相关推荐
编程社区管理员几秒前
React安装使用教程
前端·react.js·前端框架
小小鸭程序员10 分钟前
Vue组件化开发深度解析:Element UI与Ant Design Vue对比实践
java·vue.js·spring·ui·elementui
拉不动的猪33 分钟前
vue自定义指令的几个注意点
前端·javascript·vue.js
yanyu-yaya34 分钟前
react redux的学习,单个reducer
前端·javascript·react.js
陌路物是人非34 分钟前
SpringBoot + Netty + Vue + WebSocket实现在线聊天
vue.js·spring boot·websocket·netty
skywalk816335 分钟前
OpenRouter开源的AI大模型路由工具,统一API调用
服务器·前端·人工智能·openrouter
Liudef0637 分钟前
deepseek v3-0324 Markdown 编辑器 HTML
前端·编辑器·html·deepseek
拉不动的猪39 分钟前
uniapp与React Native/vue 的简单对比
前端·vue.js·面试
加瓦点灯1 小时前
观察者模式:解耦对象间的依赖关系
开发语言·javascript·观察者模式
z_mazin2 小时前
Chrome开发者工具实战:调试三剑客
前端·javascript·chrome·网络爬虫