2.1.0 • Published 3 years ago

ofcold-security-code v2.1.0

Weekly downloads
32
License
MIT
Repository
github
Last release
3 years ago

Ofcold Security Code

A powerful security code input supports dynamic configuration of the number of input boxes.

Features

  • Automatic next input box.
  • Page initialization automatic countdown.
  • The number of custom input boxes.
  • Support copy and paste.
  • Support tailwindcss by version >=2.0.0

Installation

npm install --save ofcold-security-code

Usage

<!-- Html  -->
<ofcold-code v-model="code"/>

VUE 2.0 And 3.0

// Javascript
import OfcoldCode from 'ofcold-security-code';

export default {
	data:() => ({
		code: ''
	}),
	components: {
		OfcoldCode
	}
}

// OR ...
import {defineComponent, ref} from 'vue'
import OfcoldCode from 'ofcold-security-code'

export default defineComponent({
	components: {
		OfcoldCode
	},
	setup(props, ctx) {
		const code = ref('')

		return {
			code
		}
	}
})

API

  • isArray Deprecated version 2.x please use returnArray.
  • returnArray boolean default false The return data type.
  • val string|array default ''.
  • len The code length default 6.
  • size The input size default md The options are small, default, lg, xl.

Example loading...

CODE

2.1.0

3 years ago

2.0.0

3 years ago

1.0.11

4 years ago

1.1.0

5 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago