mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
13 lines
532 B
TypeScript
13 lines
532 B
TypeScript
import { Binary } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.ipv4-address-converter.title'),
|
|
path: '/ipv4-address-converter',
|
|
description: translate('tools.ipv4-address-converter.description'),
|
|
keywords: ['ipv4', 'address', 'converter', 'decimal', 'hexadecimal', 'binary', 'ipv6'],
|
|
component: () => import('./ipv4-address-converter.vue'),
|
|
icon: Binary,
|
|
createdAt: new Date('2023-04-08'),
|
|
});
|