https://blog.csdn.net/skyblacktoday/article/details/80255348 (opens new window)
- 安装
npm install --save js-md5
1
- 在main.js中使用
import md5 from 'js-md5';
Vue.prototype.$md5 = md5;
1
2
2
- 在需要用到的文件中使用
password: this.$md5(this.formLogin.password)
1
https://blog.csdn.net/skyblacktoday/article/details/80255348 (opens new window)
npm install --save js-md5
import md5 from 'js-md5';
Vue.prototype.$md5 = md5;
password: this.$md5(this.formLogin.password)