it-tools/src/tools/integer-base-converter/index.ts

13 lines
511 B
TypeScript
Raw Normal View History

2022-04-12 14:27:52 +02:00
import { ArrowsLeftRight } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
2022-04-12 14:27:52 +02:00
export const tool = defineTool({
name: translate('tools.base-converter.title'),
2022-04-12 14:27:52 +02:00
path: '/base-converter',
description: translate('tools.base-converter.description'),
2022-05-09 14:38:54 +02:00
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,
});