> For the complete documentation index, see [llms.txt](https://vuido.mimec.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vuido.mimec.org/built-in-components/widgets/checkbox.md).

# Checkbox

A checkbox widget.

Checkbox supports the `v-model` directive.

## Attributes

### checked

type: Boolean

Whether the checkbox is checked or unchecked.

## Events

### toggle

Emitted when the checkbox checked state is toggled.

## Example

```markup
<Checkbox v-model="checkboxState">Checkbox label</Checkbox>
```
