checkbox
Basic checkbox with label
Basic checkbox with label
Загрузка превью…
src/checkbox/c-checkbox-1.vue
<script setup lang="ts">
import { Checkbox } from "@/components/ui/checkbox"
import { Field, FieldLabel } from "@/components/ui/field"
</script>
<template>
<Field orientation="horizontal" class="w-auto">
<Checkbox id="terms" />
<FieldLabel for="terms">Basic checkbox</FieldLabel>
</Field>
</template>