1.0.8 • Published 7 months ago

lp741-vue-components v1.0.8

Weekly downloads
-
License
-
Repository
github
Last release
7 months ago

Vue 3 Components library

Set of useful components for Vue3

1. InputPin

<script setup>
  import InputPin from 'lp741-vue-components';
</script>
<template>
  <InputPin
      numeberOfDigits="6"
      v-model="otp"
      border-color="#9CA3AF"
      focused-border-color="#FCD34D"
      border-width="4px"
      radius="12px"
      bg-color="#efefef"
  ></InputPin>  
</template>

Options:

  numberOfDigits: {
    type: Number,
    default: 6
  },
  modelValue: {
    type: String,
    default: ''
  },
  borderColor: {
    type: String,
    default: '#000'
  },
  focusedBorderColor: {
    type: String,
    default: '#3B82F6'
  },
  bgColor: {
    type: String,
    default: '#FFFFFF'
  },
  color: {
    type: String,
    default: 'inherit'
  },
  radius: {
    type: String,
    default: '100%'
  },
  borderWidth: {
    type: String,
    default: '3px'
  }
1.0.8

7 months ago

1.0.7

7 months ago

1.0.6

7 months ago

1.0.5

7 months ago

1.0.4

7 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago