14 lines
209 B
JavaScript
14 lines
209 B
JavaScript
|
new Vue({
|
||
|
el: '#app',
|
||
|
data: {
|
||
|
hex: '',
|
||
|
},
|
||
|
|
||
|
computed: {
|
||
|
base32: function () {
|
||
|
const buf = OTPAuth.Utils.hex.encode(this.hex);
|
||
|
return OTPAuth.Utils.b32.decode(buf);
|
||
|
}
|
||
|
}
|
||
|
});
|