Files
oa/documentation/elements/forms/textarea/textarea-base-documentation.md
2025-05-24 01:49:48 +09:00

844 B

state
state
textarea

VTextarea

Vuero provides elegant form controls with minimum styling. VTextarea accept all attributes that <textarea> accepts. You can control the box text length with the rows="*" attribute. Always wrap your inputs inside a <VField /> and a <VControl /> to build forms quickly and efficiently.

<script setup lang="ts">

const textarea = ref('')
</script>

<template>
  <VField>
    <VControl>
      <VTextarea
        v-model="textarea"
        rows="4"
        placeholder="A longer message..."
      />
    </VControl>
  </VField>
</template>