mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 06:03:39 +09:00
844 B
844 B
state
| state | ||
|---|---|---|
|
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>