> For the complete documentation index, see [llms.txt](https://wotamann.gitbook.io/vuetify-form-base/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wotamann.gitbook.io/vuetify-form-base/schema-1/arrays.md).

# Arrays

## Model Arrays

Handling Arrays in Model

### Array

```javascript
model: {
  edit:'to do'
  tasks:[
    { done:false, task:'read the man' }
    { done:true, task:'fixed' }
  ]        
},

schema: {
  edit: { type:'text', col: 12 },
  tasks: {
    type: 'array',
    col: 12,
    schema: {
      done: { type: 'checkbox', label: 'Done', col: 2 },
      task: { type: 'text', label:'Task', col: 8 }
    }
  }
}
```

[Example - Simple](https://wotamann.github.io/arrayease)

[Example - Edit Array](https://wotamann.github.io/array)

### [List](/vuetify-form-base/input-and-controls-1/lists-and-treeviews.md#list)

### [Treeview](/vuetify-form-base/input-and-controls-1/lists-and-treeviews.md#treeview)

{% content-ref url="/pages/-MR7SIg\_r23jwLNw2Vi0" %}
[Lists & Treeviews](/vuetify-form-base/input-and-controls-1/lists-and-treeviews.md)
{% endcontent-ref %}

## Schema Arrays

For handling Arrays defined in Schema use

### [Select](/vuetify-form-base/input-and-controls-1/selection.md#select)

### [Combobox](/vuetify-form-base/input-and-controls-1/selection.md#combobox)

### [Autocomplete](/vuetify-form-base/input-and-controls-1/selection.md#autocomplete)

{% content-ref url="/pages/-MOmjkgjmvEjU41dJP8y" %}
[Select, Combo & Autocomplete](/vuetify-form-base/input-and-controls-1/selection.md)
{% endcontent-ref %}
