Explorar el Código

feat: HintHelp component adds inheritAttrs option to support attribute inheritance

nian hace 1 mes
padre
commit
093ae51f1a
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  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>