# Input Group

We have customized input group little bit in our template to make it more beautiful

# Merged input group

Add class .input-group-merge to b-input-group component to create input group without border.

You can check demo in "Merged" card on this (opens new window) page.

# Validation with merged input group

You'll need to add .is-valid or .is-invalid class to b-input-group conditionally to get validation state styles.

<template>
  <b-input-group class="input-group-merge" :class="validation ? 'is-valid' : 'is-invalid'">
    <!-- Other stuff -->
  </b-input-group>
</template>

You can check demo in "Form Feedback helpers" card on this (opens new window) page.

Last Updated: 11/16/2022, 12:36:59 PM