Forráskód Böngészése

feat: HintHelp component adds inheritAttrs option to support attribute inheritance

nian 1 hónapja
szülő
commit
093ae51f1a
1 módosított fájl, 4 hozzáadás és 0 törlés
  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>