Files
oa/documentation/field/v-field-addon-start-documentation.md
2025-05-24 01:49:48 +09:00

735 B

Start addons

Inputs can have addons if you need to show contextual information. You can attach an addon at the start of a <VField /> with the addons prop. See markup for more details about usage.

<template>
  <VField addons>
    <VControl>
      <VButton static>
        +1
      </VButton>
    </VControl>
    <VControl expanded>
      <VInput
        type="text"
        class="input"
        placeholder="Username"
      />
    </VControl>
  </VField>
</template>
+1