feat(SelectMenu): add inputTargetForm prop to handle input validation (#3107)

This commit is contained in:
Léonard PLOTON
2025-02-14 15:30:37 +01:00
committed by GitHub
parent 15da5cf71e
commit feb716c941

View File

@@ -16,6 +16,7 @@
:value="modelValue"
:required="required"
:class="uiMenu.required"
:form="inputTargetForm"
tabindex="-1"
aria-hidden="true"
>
@@ -314,6 +315,10 @@ export default defineComponent({
type: Array,
default: null
},
inputTargetForm: {
type: String,
default: null
},
popper: {
type: Object as PropType<PopperOptions>,
default: () => ({})