mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 16:56:14 -04:00
feat(tool): base64 string converter
This commit is contained in:
parent
358ff45ae1
commit
203b6a9d73
6 changed files with 87 additions and 1 deletions
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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue