How to define multiple selection model fields or custom component inputs?

Model fields

Add a new field, with type Tags and toggle the Enum/Select option:

Custom Component Inputs

You can do that by passing enum to your input type:

{
  name: 'category',
  type: 'Tags',
  enum: ['foo', 'bar']
}
3 Likes