refactor(base64): split base64 text and file conversion in two tools + base64 to file

This commit is contained in:
Corentin Thomasset 2022-07-25 23:21:42 +02:00
parent a70a0f83a1
commit e6953d1b67
No known key found for this signature in database
GPG key ID: DBD997E935996158
8 changed files with 117 additions and 21 deletions

View file

@ -0,0 +1,12 @@
import { FileDigit } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Base64 string encoder/decoder',
path: '/base64-string-converter',
description: 'Simply encode and decode string into a their base64 representation.',
keywords: ['base64', 'converter', 'conversion', 'web', 'data', 'format', 'atob', 'btoa'],
component: () => import('./base64-string-converter.vue'),
icon: FileDigit,
redirectFrom: ['/file-to-base64', '/base64-converter'],
});