Slot

Many times, we need to be more detailed to customize our form controls. At this time, the slot becomes very useful. We can look at the common slot distribution:

slot

Around our form controls, Former has provided some slots for users to use. In our JSON schema, we can income fields like top, prefix, bottom, suffix.

...
{
  label: 'input',
  name: 'input',
  type: 'input',
  top: 'top',
  prefix: 'prefix',
  suffix: 'suffix',
  bottom: 'bottom'
}
...
Last Updated: 2/15/2019, 4:04:50 AM