码迷,mamicode.com
首页 > 其他好文 > 详细

vue MD5 加密

时间:2019-01-03 12:59:10      阅读:1748      评论:0      收藏:0      [点我收藏+]

标签:str   main   port   his   creat   安装   模块   rom   dig   

确保vue项目中有MD5的依赖,当然没有的可以安装crypto模块。

 

npm安装:

npm install --save crypto

 

在main.js文件中将md5引入,可以全局使用的

import crypto from "crypto";
Vue.prototype.$md5 = crypto.createHash("md5");

在需要使用MD5加密的页面中,通过this指向MD5

this.$md5.update(value);

this.$md5.digest("hex")

注:value是你要加密的内容

  this.$md5.digest("hex")的结果就是加密结果

 

vue MD5 加密

标签:str   main   port   his   creat   安装   模块   rom   dig   

原文地址:https://www.cnblogs.com/tongjiaojiao/p/10213483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!