# Vue使用md5插件

Vue使用md5插件

  1. 安装md5插件
cnpm install --save js-md5
cnpm  install @types/js-md5
  1. 配置全局变量在main.js中
//引用md5插件
import md5 from 'js-md5'
//将md5绑定到全局
Vue.prototype.$md5 = md5
  1. 使用
 .post("/user/login", {
          account: this.account,
          password:this.$md5(this.password)
        })
发布了123 篇原创文章 · 获赞 9 · 访问量 4001

猜你喜欢

转载自blog.csdn.net/qq_37248504/article/details/103303138