vue3-otp-input icon indicating copy to clipboard operation
vue3-otp-input copied to clipboard

I can input "v" in numeric input

Open jetie000 opened this issue 1 year ago • 1 comments

<v-otp-input
  :num-inputs="6"
  v-model:value="code" // string ref
  input-classes="otp-input rounded-md"
  inputType="password"
/>
<style lang="scss">
.otp-input-container {
  justify-content: space-between;
  gap: 10px;

  & > div {
    .otp-input {
      height: 34px;
      width: 100%;
      font-size: 22px;
      border: 1px solid $gray-main;
      text-align: center;
    }
  }
}
</style>

no other letters, only v

jetie000 avatar Aug 19 '24 20:08 jetie000