Explorar o código

修改右键 bug

huangbin %!s(int64=4) %!d(string=hai) anos
pai
achega
9345b2f0fe
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      src/common/components/contextMenu/contextMenu.vue

+ 2 - 0
src/common/components/contextMenu/contextMenu.vue

@@ -1,6 +1,7 @@
 <template>
 
   <ul class="context-menu"
+      v-show="contextMenu.show"
       :style="{ top: y, left: x }">
     <li v-for="(item, index) in contextMenu.menuList"
         :key="index"
@@ -21,6 +22,7 @@ export default defineComponent({
             default: {
                 position: { clientX: 0, clientY: 0 },
                 menuList: [],
+                show: false,
             },
             type: Object as PropType<ContextMenu>,
         },