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

487 B

Input Loading

An VInput can be shown in a loading state. To apply that style, simply add the loading prop to the wrapping <VControl /> component.

<template>
  <VField>
    <VControl loading>
      <VInput type="text" placeholder="Username" />
    </VControl>
  </VField>
</template>