vue——动手完成一个自定义右键菜单组件

动手完成一个自定义右键菜单组件

实现效果

在虚线框内点击任何位置都可以弹出右键菜单,右键菜单的内容是可以自定义的,此处举例:复制、粘贴
在这里插入图片描述

引入第三方组件

引入第三方组件vue-context-menu

npm install vue-context-menu

父组件

<template>
  <div class="dashboard-container">
    <!-- 自定义右键菜单 -->
    <div class="contextmenu-wrapper">
      <div
        class="contextmenu-content"
        @contextmenu.prevent.stop="handleContextmenu"
      >
        右键点击区域
      </div>
      <contextmenu ref="contextmenu" :menu-type="menuType" />
    </div>
  </div>
</template>

<script>
import Contextmenu from '@/components/Contextmenu'

export default {
  name: 'Dashboard',
  components: { Contextmenu },
  data() {
    return {
      menuType: [
        {
          text: '复制',
          disabled: false
        },
        {
          text: '粘贴',
          disabled: true
        }
      ]
    }
  },
  methods: {
    handleContextmenu() {
      this.$refs.contextmenu.$children[0].open()
    }
  }
}
</script>

<style lang="scss" scoped>
.dashboard-container {
  .contextmenu-wrapper {
    .contextmenu-content {
      text-align: center;
      margin: 20px auto;
      width: 800px;
      height: 200px;
      line-height: 200px;
      border: 1px dashed #000;
      background-color: #fff;
    }
  }
}
</style>

子组件

<template>
  <VueContextmenu ref="contextmenu" class="context-menu">
    <li
      v-for="(item, index) in menuType"
      :key="index"
      :class="[item.disabled ? 'context-menu-disabled' : '']"
      @click.prevent.stop="handlClick(item)"
      @contextmenu.prevent.stop
    >
      {{ item.text }}
    </li>
  </VueContextmenu>
</template>

<script>
import VueContextmenu from 'vue-context-menu'

/**
 * 组件:<contextmenu ref="contextmenu" :menu-type="menuType" />
 *
 * 右键事件触发函数内调用:this.$refs.contextmenu.$children[0].open();
 */

export default {
  name: 'Contextmenu',
  components: {
    VueContextmenu
  },
  props: {
    menuType: {
      type: Array,
      default() {
        return [
          {
            text: '复制',
            disabled: false
          },
          {
            text: '粘贴',
            disabled: true
          }
        ]
      }
    }
  },
  mounted() {
    document.addEventListener('click', this.handlHide)
    console.log(this.$refs.contextmenu)
  },
  beforeDestroy() {
    document.removeEventListener('click', this.handlHide)
  },
  methods: {
    handlClick(item) {
      if (item.disabled) {
        this.$refs.contextmenu.ctxVisible = true
      } else {
        this.$refs.contextmenu.ctxVisible = false
      }
    },
    handlHide() {
      this.$refs.contextmenu.ctxVisible = false
    }
  }
}
</script>

<style lang="scss">
.context-menu {
  border: 1px solid #e4e7ed;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.06);
  font-size: 14px;

  .ctx-menu {
    box-sizing: border-box;
    position: static;
    border: none;
    box-shadow: none;
    color: #606266;
    min-width: 0;
    margin: 0;
    border-radius: 0;

    li {
      padding: 5px 20px;
      text-align: left;
      cursor: pointer;

      &.context-menu-disabled {
        color: #c0c4cc;

        &:hover {
          cursor: no-drop;
          background-color: #ffffff;
          color: #c0c4cc;
        }
      }

      &:hover {
        background-color: #409eff;
        color: #fff;
      }
    }
  }
}
</style>
当然,我可以帮你写一个Vue 3编写的自定义右键菜单组件。以下是一个简单的示例: 1. 首先,创建一个名为`ContextMenu.vue`的组件文件。 ```vue <template> <div class="context-menu" :style="{ top: `${top}px`, left: `${left}px` }"> <ul> <li v-for="(item, index) in items" :key="index" @click="handleItemClick(item.action)"> {{ item.label }} </li> </ul> </div> </template> <script> export default { props: { items: { type: Array, required: true }, top: { type: Number, required: true }, left: { type: Number, required: true } }, methods: { handleItemClick(action) { // 执行相应的操作 if (action) { this[action](); } }, // 示例操作函数 exampleAction() { console.log("执行了示例操作"); } } }; </script> <style scoped> .context-menu { position: fixed; background-color: #fff; border: 1px solid #ccc; padding: 8px; } </style> ``` 2. 在需要使用右键菜单的地方,引入并使用`ContextMenu`组件。 ```vue <template> <div class="container" @contextmenu.prevent="showContextMenu($event)"> 右键点击此处显示菜单 <ContextMenu v-if="showMenu" :items="menuItems" :top="menuTop" :left="menuLeft" /> </div> </template> <script> import ContextMenu from "@/components/ContextMenu.vue"; export default { components: { ContextMenu }, data() { return { showMenu: false, menuItems: [ { label: "菜单项1", action: "exampleAction" }, { label: "菜单项2", action: "exampleAction" }, { label: "菜单项3", action: "exampleAction" } ], menuTop: 0, menuLeft: 0 }; }, methods: { showContextMenu(event) { event.preventDefault(); this.showMenu = true; this.menuTop = event.clientY; this.menuLeft = event.clientX; }, exampleAction() { console.log("执行了示例操作"); } } }; </script> <style scoped> .container { width: 200px; height: 200px; background-color: lightgray; } </style> ``` 这个示例中,我们创建了一个`ContextMenu`组件,它接收一个菜单项数组和菜单显示的位置作为props。当右键点击触发`@contextmenu.prevent`事件时,显示右键菜单,并根据鼠标位置设置菜单的top和left样式。 请注意,这只是一个简单的示例,你可以根据自己的需求对菜单样式和行为进行进一步的定制。希望对你有所帮助!如果你还有其他问题,请随时提问。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

前端技术迷

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值