mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
53 lines
937 B
Vue
53 lines
937 B
Vue
<template>
|
|
<div :class="b()">
|
|
<ul
|
|
:class="b('security')"
|
|
class="van-hairline--surround"
|
|
@touchstart.stop="$emit('focus')"
|
|
>
|
|
<li
|
|
v-for="visibility in points"
|
|
class="van-hairline"
|
|
>
|
|
<i :style="`visibility: ${visibility}`" />
|
|
</li>
|
|
</ul>
|
|
<div
|
|
v-if="errorInfo || info"
|
|
v-text="errorInfo || info"
|
|
:class="b(errorInfo ? 'error-info' : 'info')"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import create from '../utils/create';
|
|
|
|
export default create({
|
|
name: 'password-input',
|
|
|
|
props: {
|
|
info: String,
|
|
errorInfo: String,
|
|
value: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
length: {
|
|
type: Number,
|
|
default: 6
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
points() {
|
|
const arr = [];
|
|
for (let i = 0; i < this.length; i++) {
|
|
arr[i] = this.value[i] ? 'visible' : 'hidden';
|
|
}
|
|
return arr;
|
|
}
|
|
}
|
|
});
|
|
</script>
|