Added base64 and URL encoders/decoders

Reviewed-on: #250
Reviewed-by: Adam Bem <bema@noreply.example.com>
Co-authored-by: widlam <mikolaj.widla@gmail.com>
Co-committed-by: widlam <mikolaj.widla@gmail.com>
This commit is contained in:
2023-10-27 14:32:10 +02:00
committed by Adam Bem
parent 6adc1af638
commit 430b6de5f0
6 changed files with 190 additions and 0 deletions

View File

@@ -12,6 +12,9 @@ const xsdTool = import("@views/XSDView.vue")
const xpathTool = import("@views/XPathView.vue")
const xqueryTool = import("@views/XQueryView.vue")
const base64Encoder = import("@views/Base64EncoderView.vue")
const urlEncoder = import("@views/UrlEncoderView.vue")
const routes = [
{
path: '/',
@@ -57,6 +60,16 @@ const routes = [
path: '/rest/mock',
name: 'restmock',
component: () => restMock
},
{
path: '/encoder/base64',
name: 'base64encoder',
component: () => base64Encoder
},
{
path: '/encoder/url',
name: 'urlEncoder',
component: () => urlEncoder
}
]