Back to Vuetify

Checkboxes

packages/docs/src/pages/en/components/checkboxes.md

4.1.101.8 KB
Original Source

Checkboxes

The v-checkbox component provides users the ability to choose between two distinct values. These are very similar to a switch and can be used in complex forms and checklists.

<PageFeatures />

Usage

A v-checkbox in its simplest form provides a toggle between 2 values.

<ExamplesUsage name="v-checkbox" /> <PromotedEntry />

::: tip

A simpler version, v-checkbox-btn is used primarily as a lightweight alternative in data-table components to select rows or display inline boolean data.

:::

API

ComponentDescription
v-checkboxPrimary component
<ApiInline hide-links />

Examples

Props

Colors

Checkboxes can be colored by using any of the builtin colors and contextual names using the color prop.

<ExamplesExample file="v-checkbox/prop-colors" />

Model as array

Multiple v-checkbox's can share the same v-model by using an array.

<ExamplesExample file="v-checkbox/prop-model-as-array" />

Model as boolean

A single v-checkbox will have a boolean value as its value.

<ExamplesExample file="v-checkbox/prop-model-as-boolean" />

States

v-checkbox can have different states such as default, disabled, and indeterminate.

<ExamplesExample file="v-checkbox/prop-states" />

Slots

Label slot

Checkbox labels can be defined in label slot - that will allow to use HTML content.

<ExamplesExample file="v-checkbox/slot-label" />

Misc

Inline text-field

If you need to place checkboxes in line with other components, you can use the v-checkbox-btn component.

This component renders just checkbox, without the trapping of a form input such as validation, a label, and messages.

<ExamplesExample file="v-checkbox/misc-inline-textfield" />