blob: f60d996d1fdec99e1b706a726baed13f8c228594 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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,
});
|