mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
feat(tool): base64 string converter
This commit is contained in:
11
src/tools/base64-converter/index.ts
Normal file
11
src/tools/base64-converter/index.ts
Normal 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,
|
||||
};
|
||||
Reference in New Issue
Block a user