mirror of
https://git.hmsn.ink/kospo/svcm/oa.git
synced 2026-03-19 19:25:11 +09:00
657 B
657 B
Help Text
You can easily add a help text to guide users when they
interact with your forms. Use the help prop of the <VField />
component to inject your help text string. See the code example
for more details about usage.
<template>
<VField>
<VControl>
<VInput type="text" placeholder="Username" />
<p class="help">
Choose a nice username
</p>
</VControl>
</VField>
</template>
Choose a nice username