vue 密码显示星号

组件代码

 watch: {
        safepwd: {
            handler(newv) {
                let a = newv.replace(/[*]/g, "");
                let b = newv.replace(/[^*]/g, "");
                this.safepassword = this.safepassword.substring(0, b.length);
                this.safepassword += a;
                this.safepwd = this.safepassword.replace(/./g, "*");
                console.log(this.safepassword)
            },
            immediate: true,
        }
    },

这个暂时不支持文本中间修改插入密码,只能从后面新增删除,不过还是很简单的,够用了

posted @ 2023-03-16 10:08  天天的蓝色  阅读(292)  评论(0编辑  收藏  举报