What to do when form components report errors?
Error Message 1
Unknown custom element: <formcreate> did you register the component correctly?
For recursive components,make sure to provide the "name"option.These errors are caused by components not being mounted. You need to mount the component before the form is rendered.
Error Message 2
TypeError: Invalid attempt to spread non-iterable instance.
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.Error Message 3
Uncaught TypeError: Cannot read properties of null(reading 'props')The above errors are caused by the FormCreate component not being mounted properly or not being mounted at all. Please refer to the help documentation Mount Component


