textarea

Textarea with label.

Textarea with label.

Загрузка превью…

src/textarea/c-textarea-3.vue

<script setup lang="ts">
import { Field, FieldLabel } from "@/components/ui/field"
import { Textarea } from "@/components/ui/textarea"
</script>

<template>
  <div class="mx-auto w-full max-w-xs">
    <Field class="w-full">
      <FieldLabel for="textarea-with-label">Your Message</FieldLabel>
      <Textarea id="textarea-with-label" placeholder="Type your message here…" rows="6" />
    </Field>
  </div>
</template>

Установка

npx shadcn-vue@latest add https://revueui.rootapi.dev/r/c-textarea-3.json

Зависимости реестра

Источник: порт из ReUI (Keenthemes, MIT)