mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
12 lines
511 B
TypeScript
12 lines
511 B
TypeScript
import { ArrowsLeftRight } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.base-converter.title'),
|
|
path: '/base-converter',
|
|
description: translate('tools.base-converter.description'),
|
|
keywords: ['integer', 'number', 'base', 'conversion', 'decimal', 'hexadecimal', 'binary', 'octal', 'base64'],
|
|
component: () => import('./integer-base-converter.vue'),
|
|
icon: ArrowsLeftRight,
|
|
});
|