diff options
author | 2022-04-09 15:17:59 +0200 | |
---|---|---|
committer | 2022-04-09 15:17:59 +0200 | |
commit | 765c010700c07b2809daef0e7c694ac265ce9ddc (patch) | |
tree | bb94fff7e1fcc8f62b9704a3bb4a0d29496c4406 /src/main.ts | |
parent | 390ef93232dc1b448022a0c09d36367adad9d221 (diff) | |
download | it-tools-765c010700c07b2809daef0e7c694ac265ce9ddc.tar.gz it-tools-765c010700c07b2809daef0e7c694ac265ce9ddc.tar.zst it-tools-765c010700c07b2809daef0e7c694ac265ce9ddc.zip |
feat(tool): bip39-generator
Diffstat (limited to 'src/main.ts')
-rw-r--r-- | src/main.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts index 7377786..30756ff 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,6 +2,9 @@ import { createApp } from 'vue'; import { createPinia } from 'pinia'; import { createHead } from '@vueuse/head'; +import { Buffer } from 'buffer'; +globalThis.Buffer = Buffer; + import { naive } from './plugins/naive.plugin'; import App from './App.vue'; |