Checkbox input (TCheckbox)

VueJs reactive <input type="checkbox" /> component with configurable classes, variants, and most common events. Friendly with utility-first frameworks like TailwindCSS..

Playground:


Basic example

<div class="flex">
  <label class="flex items-center">
    <t-checkbox name="options" value="a" checked />
    <span class="ml-2 text-sm">Option A</span>
  </label>
  <label class="flex items-center ml-2">
    <t-checkbox name="options" value="b" />
    <span class="ml-2 text-sm">Option B</span>
  </label>
</div>

Props

PropertyTypeDefault valueDescription
value[String, Object, Number, Boolean, Array]true'The value for the checkbox element
uncheckedValue[String, Object, Number, Boolean, Array]falseThe value for the checkbox element when unchecked
model (v-model)[String, Object, Number, Boolean]undefinedThe element used for the v-model
checked[Boolean, String]falseHTML attribute
idStringundefinedHTML attribute
autofocusBooleanundefinedHTML attribute
disabledBooleanundefinedHTML attribute
nameStringundefinedHTML attribute
readonlyBooleanundefinedHTML attribute
requiredBooleanundefinedHTML attribute
tabindex[String, Number]undefinedHTML attribute
wrappedBooleanfalseIf set the input will be wrapped in a div within some extra HTML (see wrapped checkbox)
wrapperTagString'label'The HTML tag used to wrap the input when wrapped is set to true
labelStringundefinedWhen the input is wrapped the label is added as sibling of the input
labelTagString'span'The HTML tag to use for the label
classes[String, Array, Object]...The default CSS classes
fixedClasses[String, Array, Object]undefinedFixed CSS classes that will be merged with the active set of classes
variantsObjectundefinedThe different variants of classes the component have
variant[String, Object]undefinedThe variant that will be used

Default value of the classes prop:

text-blue-500 transition duration-100 ease-in-out border-gray-300 rounded shadow-sm focus:border-blue-500 focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50 focus:ring-offset-0 disabled:opacity-50 disabled:cursor-not-allowed

Events

EventArgumentsDescription
inputString (The current value of the checkbox)Emitted every time the value of the v-model change
changeString (The current value of the checkbox)Emitted every time the value of the v-model change
focusFocusEventEmitted when the checkbox is focused
blurFocusEventEmitted when the checkbox is blurred

Wrapped checkbox

This component accepts the wrapped prop that, when set it will add some extra HTML tags that make the component even more flexible.

Remember that the component can set as "wrapped" when installed or by using the wrapped prop (see wrapped inputs for more info):

// When installed
const settings = {
  't-checkbox': {
    component: TCheckbox,
    props: {
      wrapped: true,
      // classes, variants, etc...
    }
  }
  // ...
}

Vue.use(VueTailwind, settings)
<!-- // Using the wrapped prop -->
<t-checkbox wrapped />

A wrapped checkbox input will be rendered like this:

<label class="">
  <span class="">
    <input type="checkbox" class="">
  </span>
  <span class="">Label of the checkbox</span>
</label>

Classes for wrapped input

When the input has the wrapped setting, the classes, variants, etc. need to be an object with the following properties:

PropertyDescription
wrapperClasses for the label HTML tag that wraps the whole component
wrapperCheckedClasses to apply to the wrapper when the checkbox is checked
inputWrapperClasses for the span that wraps the checkbox
inputWrapperCheckedClasses to apply to the inputWrapper when the checkbox is checked
inputClasses for the checkbox
labelClasses for the label that wraps the label prop
labelCheckedClasses for the label that wraps the label prop when checkbox input is checked

The "Checked" attributes are optional.

Example

const settings = {
  't-checkbox': {
    component: TCheckbox,
    props: {
      wrapped: true,
      classes: {
        label: 'text-sm uppercase mx-2 text-gray-700',
        input: 'text-blue-500 transition duration-100 ease-in-out border-gray-300 rounded shadow-sm focus:border-blue-500 focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50 focus:ring-offset-0 disabled:opacity-50 disabled:cursor-not-allowed',
        inputWrapper: 'inline-flex',
        wrapper: 'flex items-center',
        // labelChecked: '',
        // inputWrapperChecked: '',
        // wrapperChecked: '',
      }
      // Variants and fixed classes in the same `object` format ...
    }
  },
  // ...
}

Vue.use(VueTailwind, settings)

If you use the settings in the example above the component will be rendered like this:

Use a label

When the TCheckbox component has the wrapped setting set it accepts a label prop that is added as a sibling of the input

<t-checkbox wrapped label="my own option" name="example-2">
<t-checkbox wrapped label="my own option 2" name="example-2">

Label slot

The label can be also added by using the default slot.

I am: 
<t-checkbox wrapped name="example-3">
😡
</t-checkbox>
<t-checkbox wrapped name="example-3">
😀
</t-checkbox>
I am:

Sign up for our newsletter

Stay up-to-date on news and updates about this project by email.

I will never spam or share your email under any circustance.