Docs
Checkbox

Checkbox

A control that allows the user to toggle between checked and not checked.

Installation

bash
npx shadcn-vue@latest add checkbox

Usage

vue
<script setup lang="ts">
import { Checkbox } from '@/lib/registry/default/ui/checkbox'
</script>

<template>
  <Checkbox id="terms" />
</template>
Edit this page on GitHub