On This Page
A control that allows the user to toggle between checked and not checked.
npx shadcn-vue@latest add checkbox
<script setup lang="ts"> import { Checkbox } from '@/lib/registry/default/ui/checkbox' </script> <template> <Checkbox id="terms" /> </template>