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