平台兼容性


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>

隐私、权限声明

1. 本插件需要申请的系统权限列表:

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

许可协议

MIT协议

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问