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

536 B

Rounded input

You can easily change the shape of the VInput inside the field. Simply add the is-rounded class to the Html input element.

<template>
  <VField>
    <VControl>
      <VInput
        type="text"
        class="is-rounded"
        placeholder="Username"
      />
    </VControl>
  </VField>
</template>