mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
refactor(base64): split base64 text and file conversion in two tools + base64 to file
This commit is contained in:
parent
a70a0f83a1
commit
e6953d1b67
8 changed files with 117 additions and 21 deletions
12
src/tools/base64-file-converter/index.ts
Normal file
12
src/tools/base64-file-converter/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { FileDigit } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'Base64 file converter',
|
||||
path: '/base64-converter',
|
||||
description: "Convert string, files or images into a it's base64 representation.",
|
||||
keywords: ['base64', 'converter', 'upload', 'image', 'file', 'conversion', 'web', 'data', 'format'],
|
||||
component: () => import('./base64-file-converter.vue'),
|
||||
icon: FileDigit,
|
||||
redirectFrom: ['/file-to-base64', '/base64-string-converter'],
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue