diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e6b190d..44744212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Next - [feat] [BIP39 generator](https://it-tools.tech/bip39-generator) +- [feat] [Base 64 converter](https://it-tools.tech/base64-string-converter) ## 1.5.2 - [feat] [humans.txt](https://it-tools.tech/humans.txt) diff --git a/src/router.js b/src/router.js index c7a046d7..d643d83c 100644 --- a/src/router.js +++ b/src/router.js @@ -89,6 +89,12 @@ const toolsComponents = [ path: '/file-to-base64', component: () => import('./routes/tools/FileToBase64') }, + { + icon: 'fa-file-alt', + text: 'Base64 string converter', + path: '/base64-string-converter', + component: () => import('./routes/tools/StringToBase64') + } ], }, { diff --git a/src/routes/tools/StringToBase64.vue b/src/routes/tools/StringToBase64.vue new file mode 100644 index 00000000..6a9684c8 --- /dev/null +++ b/src/routes/tools/StringToBase64.vue @@ -0,0 +1,66 @@ + + + + + \ No newline at end of file