fix: disabled prop for input
This commit is contained in:
parent
8ce4378d02
commit
cb116f5547
|
|
@ -23,7 +23,7 @@ const inputComponent = computed(() => props.config?.component === 'textarea' ? T
|
||||||
:is="inputComponent"
|
:is="inputComponent"
|
||||||
type="text"
|
type="text"
|
||||||
v-bind="{ ...slotProps.componentField, ...config?.inputProps }"
|
v-bind="{ ...slotProps.componentField, ...config?.inputProps }"
|
||||||
:disabled="disabled"
|
:disabled="config?.inputProps?.disabled ?? disabled"
|
||||||
/>
|
/>
|
||||||
</slot>
|
</slot>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user