Textarea
- Файл: app/components/ui/textarea/Textarea.vue
Быстрый старт
<script setup lang="ts">
import { Textarea } from 'components/ui/textarea';
const text = ref<string>('Текст текст текст');
</script>
<template>
<Textarea
label="Текст"
v-model="text"
:autoheight="true"
/>
</template>
API
Props
| Prop | Type | По умолчанию |
|---|---|---|
label | string | '' |
id | string | '' |
disabled | boolean | false |
required | boolean | false |
name | string | '' |
placeholder | string | '' |
autoheight | boolean | false |
modelValue | string | '' |
Models
| Prop | Type | По умолчанию |
|---|---|---|
model | string | undefined |