1.4.1 • Published 1 year ago

vue-split-input v1.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Split Input Component for Vue 3.x

Used for otps, transaction pin, passwords etc

Install

NPM

//with npm
npm i vue-split-input --save

//with yarn
yarn add vue-split-input

//with pnpm
pnpm i vue-split-input

Usage

import { createApp } from 'vue';
import Root from './App.vue'
import SplitInput from 'vue-split-input';

const app = createApp(App)

app.use(SplitInput)

app.mount('#app')
Props
Props#Type#default#description
inputNumberNumber6Number for input rendered
typeString as PropType<'tel', 'password', 'text'>'tel'Input type. Optional value: password, text
classNameString''Custom class/style for each input
disabledBooleanfalseDisabled all input
placeholderString''Default description for each input
placeholdersArraynullDefault description for all inputs
Events
Name#Description
focuscustom focus method that passes the input event as an argument
SplitInput.vue Usage
<template>
 <split-input
  v-model="input"
  class-name="w-12 h-8 rounded-sm p-5 font-bold text-lg"
  :input-number="4"
 />
</template>
Or
<script lang="ts">
 export default defineComponent({
  template: `
            <split-input
            v-model="input"
            class-name="w-12 h-8 rounded-sm p-5 font-bold text-lg"
            :input-number="4"
            />
        `,
 });
</script>

You can also pass a ref to access the component dom and objects directly

<script setup lang="ts">
 import { ref } from 'vue';
 import type { ComponentPublicInstance } from 'vue';
 import type { Prop } from 'vue-split-input';

 const input = ref<ComponentPublicInstance<Prop> | null>(null);
 const clear = () => input.value?.clearAllInput();
</script>

<template>
 <split-input
  ref="input"
  v-model="input"
  class-name="w-12 h-8 rounded-sm p-5 font-bold text-lg"
  :input-number="4"
 />
 <button
  type="button"
  @click="clear"
  class="px-6 bg-blue-500 text-white text-xs ml-2"
 >
  CLEAR ALL
 </button>
</template>

Thanks! Damilare.

1.4.1

1 year ago

1.3.1

2 years ago

1.2.0

2 years ago

1.1.2

2 years ago

1.0.2

2 years ago

0.9.34

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

0.9.35

2 years ago

0.9.31

2 years ago

0.9.32

2 years ago

1.0.9

2 years ago

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

0.9.0

2 years ago

0.8.0

2 years ago

0.7.0

3 years ago

0.5.0

3 years ago

0.6.0

3 years ago

0.0.1

3 years ago