Package Exports
- vue-verification-code-input
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-verification-code-input) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-verification-code-input
🎉A verification code input
Live demo
Install
npm install --save vue-verification-code-inputUsage
<template>
<div id="app">
<CodeInput :loading="false" class="input" v-on:change="onChange" v-on:complete="onComplete" />
</div>
</template>
<script>
import CodeInput from "vue-verification-code-input";
export default {
name: "app",
components: {
CodeInput
},
methods: {
onChange(v) {
console.log("onChange ", v);
},
onComplete(v) {
console.log("onComplete ", v);
}
}
};
</script>PropTypes
| Key | Type | Desc |
|---|---|---|
| type | text | one of number or text |
| fields | number | The count of characters |
| onChange | func | Trigger on character change |
| onComplete | func | Trigger on all character inputs |
| fieldWidth | number | input width |
| fieldHeight | number | input height |
| autoFocus | bool | auto focus first input on init |
| title | string | code input title |
| loading | bool | show loading flag |
| className | string | class name |
| values | array | default values |
License
MIT © suweya
