Преглед изворни кода

fix: 右键组件缺少PropType类型引用 (#2129)

右键组件缺少PropType类型引用
前端爱码士 пре 2 година
родитељ
комит
dac9301af4
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/components/ContextMenu/src/ContextMenu.vue

+ 1 - 1
src/components/ContextMenu/src/ContextMenu.vue

@@ -1,6 +1,6 @@
 <script lang="tsx">
   import type { ContextMenuItem, ItemContentProps, Axis } from './typing';
-  import type { FunctionalComponent, CSSProperties } from 'vue';
+  import type { FunctionalComponent, CSSProperties, PropType } from 'vue';
   import { defineComponent, nextTick, onMounted, computed, ref, unref, onUnmounted } from 'vue';
   import Icon from '/@/components/Icon';
   import { Menu, Divider } from 'ant-design-vue';