2022-04-12 14:27:52 +02:00
|
|
|
import { ArrowsLeftRight } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2022-04-12 14:27:52 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2022-04-12 14:27:52 +02:00
|
|
|
name: 'Integer base converter',
|
|
|
|
path: '/base-converter',
|
2022-05-09 14:38:54 +02:00
|
|
|
description: 'Convert number between different bases (decimal, hexadecimal, binary, octal, base64, ...)',
|
|
|
|
keywords: ['integer', 'number', 'base', 'conversion', 'decimal', 'hexadecimal', 'binary', 'octal', 'base64'],
|
2022-04-12 14:27:52 +02:00
|
|
|
component: () => import('./integer-base-converter.vue'),
|
|
|
|
icon: ArrowsLeftRight,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|