it-tools/src/tools/base64-converter/index.ts

12 lines
434 B
TypeScript
Raw Normal View History

2022-04-14 02:30:25 +02:00
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,
};