Skip to content
On this page

Checkbox

Use checkboxes for single or multiple-choice selections.

vue
<script setup lang="ts">
import { Checkbox } from '@sigveh/basic-ui'
</script>

<template>
  <Checkbox required label="Send me email" />
</template>

Demo

Type definitions

ts
interface CheckboxProps {
  label?: string
  description?: string
  checked?: boolean
  required?: boolean
  modelValue?: any
  name?: string
}