mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-29 10:59:12 -04:00
feat(tool): base converter
This commit is contained in:
parent
5cd9997a84
commit
034c686896
5 changed files with 118 additions and 1 deletions
11
src/tools/integer-base-converter/index.ts
Normal file
11
src/tools/integer-base-converter/index.ts
Normal 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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue