标签 (Label)

渲染与控件相关联的可访问标签。

安装

pnpm dlx shadcn-vue@latest add label

用法

vue
<script setup lang="ts">
import { Label } from '@/components/ui/label'
</script>

<template>
  <Label for="email">您的电子邮件地址</Label>
</template>
Edit this page on GitHub