1.0.8 • Published 2 years ago

lp741-vue-components v1.0.8

Weekly downloads
-
License
-
Repository
github
Last release
2 years 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

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago