美文网首页
vue 实现 sha256加密

vue 实现 sha256加密

作者: 八妹sss | 来源:发表于2020-07-23 13:33 被阅读0次
    安装
    import { sha256 } from 'js-sha256'
    
    全局引用
    Vue.prototype.$sha256 = sha256
    
    使用
      mounted () {
       console.log('sha256', this.$sha256('1233445'))
      }
    
    局部安装及使用
    import { sha256 } from 'js-sha256'
    console.log(sha256('1233445'))
    

    github地址:https://github.com/emn178/js-sha256

    相关文章

      网友评论

          本文标题:vue 实现 sha256加密

          本文链接:https://www.haomeiwen.com/subject/ggzclktx.html