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

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