2.6.0 • Published 4 years ago
ofcold-vue-security-code v2.6.0
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-vue-security-code
// OR
yarn add ofcold-vue-security-codeUsage
<!-- Html -->
<input-code v-model="code"/>VUE 2.0 And 3.0
// Javascript
import InputCode from 'ofcold-vue-security-code';
export default {
data:() => ({
code: ''
}),
components: {
InputCode
}
}
// OR ...
import {defineComponent, ref} from 'vue'
import InputCode from 'ofcold-vue-security-code'
export default defineComponent({
components: {
InputCode
},
setup(props, ctx) {
const code = ref('')
return {
code
}
}
})API
isArrayDeprecated version 2.x please usereturnArray.returnArrayboolean default false The return data type.valstring|array default ''.lenThe code length default6.sizeThe input size defaultmdThe options aresmall,default,lg,xl.
Example loading...
