804 B
804 B
| title | description | source | primitive |
|---|---|---|---|
| Label | Renders an accessible label associated with controls. | https://github.com/radix-vue/shadcn-vue/tree/main/apps/www/src/lib/registry/default/ui/label | https://www.radix-vue.com/components/label.html |
<<< ../../../lib/registry/default/examples/LabelDemo.vue
Installation
npx shadcn-vue@latest add input
- Install
radix-vue:
npm install radix-vue
- Copy and paste the component source files linked at the top of this page into your project.
Usage
<script setup lang="ts">
import { Label } from '@/lib/registry/default/ui/label'
</script>
<template>
<Label for="email">Your email address</Label>
</template>