Checkbox
A control that allows the user to toggle between checked and not checked.
Installation 
bash
npx shadcn-vue@latest add checkboxUsage 
vue
<script setup lang="ts">
import { Checkbox } from '@/components/ui/checkbox'
</script>
<template>
  <Checkbox id="terms" />
</template>Examples 
With text 
You agree to our Terms of Service and Privacy Policy.
Disabled 
Form 
Please first read vee-validate section for Checkbox and Radio Inputs