Files
oa/documentation/elements/forms/inputs/input-basic-documentation.md
2025-05-24 01:49:48 +09:00

730 B

state
state
input

VInput

Vuero provides elegant form controls with minimum styling. VInput accept all attributes that <input> accepts. Always wrap your inputs inside a <VField /> and a <VControl /> to build forms quickly and efficiently.

<script setup lang="ts">

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

<template>
  <VField>
    <VControl>
      <VInput
        v-model="input"
        type="text"
        placeholder="Your username"
      />
    </VControl>
  </VField>
</template>