Ant Design Vue v1 provided a documented example for writing custom form components.
The same approach does not apply to version 2x.
How can a custom form component be implemented in AntDV 2x (vue 3) using useForm?
Ant Design Vue v1 provided a documented example for writing custom form components.
The same approach does not apply to version 2x.
How can a custom form component be implemented in AntDV 2x (vue 3) using useForm?
Copyright © 2021 Jogjafile Inc.
I believe I have figured this out. Previously your custom component needed to emit a
change
event:Having looked through the source code I learned that you also need to emit an
update:value
event as well: