平台兼容性
sunui for password
方法回调
@change="showPass"
版本号
-
1.0(发布)
后期计划
- 暂定.
使用示例
<template>
<view class="content">
<input type="text" value="" :password="show" placeholder="请输入密码" />
<sunui-password @change="showPass" />
</view>
</template>
<script>
export default {
data() {
return {
show: true
}
},
onLoad() {
},
methods: {
showPass(e) {
console.log(e);
this.show = e;
}
}
}
</script>
<style>
.content {
padding: 1%;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2upx solid #eee;
}
input {
width: 100%;
padding: 2%;
}
</style>