> For the complete documentation index, see [llms.txt](https://vue-generators.gitbook.io/vue-generators/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vue-generators.gitbook.io/vue-generators/develop/fields/core-fields/checkbox.md).

# checkbox

This is a standard HTML checkbox input field for boolean values.

## Special properties of field

| Property       | Default | Accepted values                                                       | Description                                                                               |
| -------------- | ------- | --------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
| `autocomplete` | *none*  | [see doc](https://html.spec.whatwg.org/multipage/forms.html#autofill) | Indicates whether the value of the control can be automatically completed by the browser. |

## Usage

```javascript
{
    type: "checkbox",
    label: "Status",
    model: "status",
    default: true
}
```
