liup a01a5aa773 | 3 주 전 | |
---|---|---|
.. | ||
composables | 3 주 전 | |
theme-chalk | 3 주 전 | |
CHANGELOG.md | 3 주 전 | |
LICENSE | 3 주 전 | |
README.md | 3 주 전 | |
index.ts | 3 주 전 | |
index.vue | 3 주 전 | |
instance.ts | 3 주 전 | |
package.json | 3 주 전 | |
types.ts | 3 주 전 |
该组件一般用于验证码的输入提示
npm i tnuiv3p-tn-verify-code-input
tnuiv3p-tn-verify-code-input/index.vue
App(vue) | H5 | 微信小程序 | 支付宝小程序 | ... |
---|---|---|---|---|
√ | √ | √ | √ | 适配中 |
v-model
绑定验证码的值length
控制验证码的长度,默认值为4
<script lang="ts" setup>
import { ref } from 'vue'
import TnVerifyCodeInput from 'tnuiv3p-tn-verify-code-input/index.vue'
const codeInput = ref<string>('')
</script>
<template>
<TnVerifyCodeInput v-model="codeInput" />
</template>
<script lang="ts" setup>
import { ref } from 'vue'
import TnVerifyCodeInput from 'tnuiv3p-tn-verify-code-input/index.vue'
const codeInput = ref<string>('')
</script>
<template>
<TnVerifyCodeInput v-model="codeInput" :length="6" />
</template>
将input-type
设置为border
即可设置边框提示框
此时的提示框显示为一个边框,如果设置了breath
为true
边框在当前选中时会有呼吸灯的效果,通过inactive-color
设置边框默认的颜色,通过active-color
设置边框当前选中时的颜色
<script lang="ts" setup>
import { ref } from 'vue'
import TnVerifyCodeInput from 'tnuiv3p-tn-verify-code-input/index.vue'
const codeInput = ref<string>('')
</script>
<template>
<TnVerifyCodeInput v-model="codeInput" input-type="border" />
</template>
将input-type
设置为border-vline
即可设置边框带垂直竖线
此时的提示框显示为一个边框且中间有一个垂直的竖线,如果设置了breath
为true
时垂直的竖线显示为呼吸灯的效果,通过inactive-color
设置边框和垂直竖线默认的颜色,通过active-color
设置边框和垂直竖线当前选中时的颜色
<script lang="ts" setup>
import { ref } from 'vue'
import TnVerifyCodeInput from 'tnuiv3p-tn-verify-code-input/index.vue'
const codeInput = ref<string>('')
</script>
<template>
<TnVerifyCodeInput v-model="codeInput" input-type="border-vline" />
</template>
将input-type
设置为border-hline
即可设置边框带居中横线
此时的提示框显示为一个边框且中间有一个居中的横线,如果设置了breath
为true
时居中的横线显示为呼吸灯的效果,通过inactive-color
设置边框和居中横线默认的颜色,通过active-color
设置边框和居中横线当前选中时的颜色
<script lang="ts" setup>
import { ref } from 'vue'
import TnVerifyCodeInput from 'tnuiv3p-tn-verify-code-input/index.vue'
const codeInput = ref<string>('')
</script>
<template>
<TnVerifyCodeInput v-model="codeInput" input-type="border-hline" />
</template>
将input-type
设置为middle-vline
即可设置垂直居中竖线
此时的提示区域显示一条垂直居中的竖线,如果设置了breath
为true
时竖线显示为呼吸灯的效果,通过inactive-color
设置竖线的默认颜色,通过active-color
设置竖线选中时的颜色
<script lang="ts" setup>
import { ref } from 'vue'
import TnVerifyCodeInput from 'tnuiv3p-tn-verify-code-input/index.vue'
const codeInput = ref<string>('')
</script>
<template>
<TnVerifyCodeInput v-model="codeInput" input-type="middle-vline" />
</template>
将input-type
设置为middle-hline
即可设置居中的横线
此时的提示区域显示一条居中的横线,如果设置了breath
为true
时横线显示为呼吸灯的效果,通过inactive-color
设置横线的默认颜色,通过active-color
设置横线选中时的颜色
<script lang="ts" setup>
import { ref } from 'vue'
import TnVerifyCodeInput from 'tnuiv3p-tn-verify-code-input/index.vue'
const codeInput = ref<string>('')
</script>
<template>
<TnVerifyCodeInput v-model="codeInput" input-type="middle-hline" />
</template>
将input-type
设置为bottom-hline
即可设置底部的横线
此时的提示区域显示一条底部的横线,如果设置了breath
为true
时横线显示为呼吸灯的效果,通过inactive-color
设置横线的默认颜色,通过active-color
设置横线选中时的颜色
<script lang="ts" setup>
import { ref } from 'vue'
import TnVerifyCodeInput from 'tnuiv3p-tn-verify-code-input/index.vue'
const codeInput = ref<string>('')
</script>
<template>
<TnVerifyCodeInput v-model="codeInput" input-type="bottom-hline" />
</template>
属性名 | 说明 | 类型 | 默认值 | 可选值 |
---|---|---|---|---|
v-model / model-value | 验证码的值 | String | Number | - | - |
length | 验证码的长度 | Number | 4 | - |
width | 每一个验证码输入框的宽度,默认单位为rpx |
String | - | - |
focus | 是否自动聚焦到当前验证码输入框 | Boolean | true |
false |
disabled | 禁用验证码输入框 | Boolean | false |
true |
breath | 当前验证码输入框激活时是否显示呼吸灯效果,具体每一个类型对应的说明详细请看上面说明 | Boolean | true |
false |
input-type | 验证码输入框的类型 | String | border |
border-vline \ border-hline \ middle-hline \ middle-vline \ bottom-hline |
inactive-color | 默认显示提示框的颜色 | String | - | - |
active-color | 激活时提示框显示的颜色 | String | - | - |
validate-event | 输入时是否触发表单验证 | Boolean | true |
false |
事件名 | 说明 | 类型 |
---|---|---|
input | 验证码输入时触发 | (value: string \| number) => void |
change | 验证码发送改变时触发 | (value: string \|number) => void |
complete | 验证码输入完成时触发 | () => void |