1、安装 jsencrypt
 npm install jsencrypt
2、在 main.js 引入 jsencrypt
 import JsEncrypt from 'jsencrypt'
 Vue.prototype.jsEncrypt = JsEncrypt
3、在 js 中写方法
   encrypt(publicKey,password){
        var en=new JSEncrypt();
        en.setPublicKey(publicKey);
        return en.encrypt(password)
   },
4、在项目中使用
 password = this.comApi.encrypt(this.publicKey,password)
Logo

前往低代码交流专区

更多推荐