feat(tool): base converter

This commit is contained in:
Corentin Thomasset 2022-04-12 14:27:52 +02:00
parent 5cd9997a84
commit 034c686896
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
5 changed files with 118 additions and 1 deletions

View file

@ -0,0 +1,11 @@
import { ArrowsLeftRight } from '@vicons/tabler';
import type { ITool } from '../Tool';
export const tool: ITool = {
name: 'Integer base converter',
path: '/base-converter',
description: 'Convert numver between different bases (decimal, hexadecimal, binary, octale, base64, ...)',
keywords: ['integer', 'number', 'base', 'convertion', 'decimal', 'hexadecimal', 'binary', 'octale', 'base64'],
component: () => import('./integer-base-converter.vue'),
icon: ArrowsLeftRight,
};