安装
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
网友评论