mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-20 02:42:49 +09:00
716 B
716 B
state
| state | ||
|---|---|---|
|
VField
Vuero come with VField, VControl and VLabel which are utility components
to compose Accessible Forms with ease.
The component VField will keep track of an unique input.
<script setup lang="ts">
const input = ref('')
</script>
<template>
<VField>
<VLabel>Username</VLabel>
<VControl>
<VInput
v-model="input"
type="text"
placeholder="john.doe"
/>
</VControl>
</VField>
</template>