<template>
<view>
<form>
<view class="cu-form-group margin-lg ">
<input placeholder="请确认新密码" type="text" :password="showPassword" v-model="newPwds" name="input"></input>
<text :class="[!showPassword ?'cuIcon-attentionfill' : 'cuIcon-attentionforbidfill']" class="text-gray" @click="showPwd" ></text>
</view>
</form>
</template>
<script>
export default {
data() {
return {
showPassword: true,
}
},
methods: {
showPwd: function() {
this.showPassword = !this.showPassword;
},
}
}
</script>
<style>
</style>
uni-app 点击小眼睛显示/隐藏密码
最新推荐文章于 2024-04-07 17:47:33 发布