Commit dac9301af485a32583e5b3aa8bc667ead514ae17

Authored by 前端爱码士
Committed by GitHub
1 parent 20c10df8

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

右键组件缺少PropType类型引用
src/components/ContextMenu/src/ContextMenu.vue
1 1 <script lang="tsx">
2 2 import type { ContextMenuItem, ItemContentProps, Axis } from './typing';
3   - import type { FunctionalComponent, CSSProperties } from 'vue';
  3 + import type { FunctionalComponent, CSSProperties, PropType } from 'vue';
4 4 import { defineComponent, nextTick, onMounted, computed, ref, unref, onUnmounted } from 'vue';
5 5 import Icon from '/@/components/Icon';
6 6 import { Menu, Divider } from 'ant-design-vue';
... ...