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

PropTypeПо умолчанию
labelstring''
idstring''
disabledbooleanfalse
requiredbooleanfalse
namestring''
placeholderstring''
autoheightbooleanfalse
modelValuestring''

Models

PropTypeПо умолчанию
modelstringundefined