소스 검색

feat: HintHelp component adds inheritAttrs option to support attribute inheritance

nian 1 개월 전
부모
커밋
093ae51f1a
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/components/HintHelp.vue

+ 4 - 0
src/components/HintHelp.vue

@@ -15,6 +15,10 @@ export interface HintHelpProps {
   popoverProps?: PopoverProps
 }
 
+defineOptions({
+  inheritAttrs: false,
+})
+
 const { label, popoverProps, buttonProps, iconProps, content } = defineProps<HintHelpProps>()
 </script>
 <template>