2020-08-27 17:18:57 +08:00

273 B

<template>
    <Wb-input :value.sync="text2" placeholder="请输入密码" type="password"></Wb-input>
</template>
<script>
    export default {
        data: function () {
            return {
                text2: "",
            }
        },
    }
</script>