label
Label for a textarea field.
Label for a textarea field.
Загрузка превью…
src/label/c-label-3.vue
<script setup lang="ts">
import { Field } from "@/components/ui/field"
import { Label } from "@/components/ui/label"
import { Textarea } from "@/components/ui/textarea"
</script>
<template>
<Field class="w-full max-w-xs">
<Label for="label-demo-message">Message</Label>
<Textarea id="label-demo-message" placeholder="Type your message here…" />
</Field>
</template>