feat(tool): base64 string converter

This commit is contained in:
Corentin Thomasset 2022-04-14 02:30:25 +02:00
parent 358ff45ae1
commit 203b6a9d73
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
6 changed files with 87 additions and 1 deletions

View file

@ -0,0 +1,11 @@
import { FileDigit } from '@vicons/tabler';
import type { ITool } from './../Tool';
export const tool: ITool = {
name: 'Base64 converter',
path: '/base64-converter',
description: "Convert string, files or images into a it's base64 representation.",
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'convertion', 'web', 'data', 'format'],
component: () => import('./base64-converter.vue'),
icon: FileDigit,
};