Vue3 Element-Plus el-tree 右键菜单组件

参考代码:实现Vue3+Element-Plus(tree、table)右键菜单组件

这篇文章的代码确实能用,但是存在错误,修正后的代码:

html 复制代码
<template>
    <div style="text-align: right">
        <el-icon size="12" color="#999" style="cursor: pointer"><Plus /></el-icon>
    </div>
    <el-tree
        :data="catalogTreeData"
        :props="{ label: 'label', children: 'children' }"
        :expand-on-click-node="false"
        ref="deptTreeRef"
        node-key="id"
        highlight-current
        default-expand-all
        @node-contextmenu="rightClick"
    />
    <div class="rightMenu" v-show="showMenu">
        <ul>
            <li v-for="(menu, index) in menus" @click="menu.click" :key="index">
                <el-icon>
                    <component :is="menu.icon" />
                </el-icon>
                <span style="margin-left: 10px">
                    {{ menu.name }}
                </span>
            </li>
        </ul>
    </div>
</template>
<script lang="ts" setup>
import { FolderAdd, Message, Plus, UserFilled } from '@element-plus/icons-vue'
import { markRaw } from 'vue'
const showMenu = ref(false)

const menus = ref<
    {
        icon: any
        name: string
        click: () => void
    }[]
>([])

const catalogTreeData = [
    {
        label: 'Level one 1',
        children: [
            {
                label: 'Level two 1-1',
                children: [
                    {
                        label: 'Level three 1-1-1'
                    }
                ]
            }
        ]
    },
    {
        label: 'Level one 2',
        children: [
            {
                label: 'Level two 2-1',
                children: [
                    {
                        label: 'Level three 2-1-1'
                    }
                ]
            },
            {
                label: 'Level two 2-2',
                children: [
                    {
                        label: 'Level three 2-2-1'
                    }
                ]
            }
        ]
    },
    {
        label: 'Level one 3',
        children: [
            {
                label: 'Level two 3-1',
                children: [
                    {
                        label: 'Level three 3-1-1'
                    }
                ]
            },
            {
                label: 'Level two 3-2',
                children: [
                    {
                        label: 'Level three 3-2-1'
                    }
                ]
            }
        ]
    }
]

// 右击方法
const rightClick = (event: MouseEvent, data: any, node: any, json: any) => {
    event.preventDefault()
    showMenu.value = false

    // 显示位置
    let menuPosition = document.querySelector('.rightMenu') as HTMLElement
    if (menuPosition) {
        menuPosition.style.left = event.clientX + 'px'
        menuPosition.style.top = event.clientY + 'px'
    }

    menus.value = [
        {
            icon: markRaw(FolderAdd), // 默认图标
            name: '新增子目录', // 默认名称
            click: () => {
                console.log('新增子目录')
            }
        },
        {
            icon: markRaw(Message),
            name: '编辑',
            click: () => {
                console.log('编辑')
            }
        },
        {
            icon: markRaw(UserFilled),
            name: '删除',
            click: () => {
                console.log('删除')
            }
        }
    ]

    showMenu.value = true
    document.addEventListener('click', close)
}

function close() {
    showMenu.value = false
}
</script>
<style scoped>
.rightMenu {
    position: fixed;
    z-index: 99999999;
    cursor: pointer;
    border: 1px solid #eee;
    box-shadow: 0 0.5em 1em 2px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    color: #606266;
    font-size: 14px;
    background: #fff;
}

.rightMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 6px;
}

.rightMenu ul li {
    padding: 6px 10px;
    border-bottom: 1px solid #c8c9cc;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.rightMenu ul li:last-child {
    border: none;
}

.rightMenu ul li:hover {
    transition: all 0.5s;
    background: #ebeef5;
}
.rightMenu ul li:hover {
    transition: all 0.5s;
    background: #ebeef5;
}

.rightMenu ul li:first-child {
    border-radius: 6px 6px 0 0;
}
.rightMenu ul li:last-child {
    border-radius: 0 0 6px 6px;
}
</style>
相关推荐
萌萌哒草头将军2 小时前
🏖️ TanStack Router:搜索参数即状态!🚀🚀🚀
javascript·vue.js·react.js
wangbing11254 小时前
开发指南120-表格(el-table)斑马纹
javascript·vue.js·elementui
越来越无动于衷4 小时前
若依项目AI 助手代码解析
vue.js·人工智能·elementui·ruoyi
WKK_4 小时前
el-select 实现分页加载,切换也数滚回到顶部,自定义高度
前端·javascript·vue.js·elementui
保持学习ing4 小时前
帝可得 - 策略管理
java·javascript·vue.js·elementui·若依框架
咔咔库奇4 小时前
开发者体验提升:打造高效愉悦的开发环境
前端·javascript·vue.js·react.js·前端框架
红衣信4 小时前
从原生 JS 到 Vue 和 React:前端开发的进化之路
前端·vue.js·react.js
sunbyte5 小时前
50天50个小项目 (Vue3 + Tailwindcss V4) ✨ | Dad Jokes(冷笑话卡片)
前端·javascript·css·vue.js·vue
WildBlue6 小时前
从“切图崽”到“App 大神”:Vue/React 教你甩锅给框架 😂
前端·vue.js·前端框架
迷途小学生6 小时前
八股文通关指南(一):彻底搞懂Vue生命周期
前端·vue.js·面试