2023-04-08 21:10:00 +02:00
|
|
|
import { Binary } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-04-08 21:10:00 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.ipv4-address-converter.title'),
|
2023-04-08 21:10:00 +02:00
|
|
|
path: '/ipv4-address-converter',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.ipv4-address-converter.description'),
|
2023-04-08 21:10:00 +02:00
|
|
|
keywords: ['ipv4', 'address', 'converter', 'decimal', 'hexadecimal', 'binary', 'ipv6'],
|
|
|
|
component: () => import('./ipv4-address-converter.vue'),
|
|
|
|
icon: Binary,
|
|
|
|
createdAt: new Date('2023-04-08'),
|
|
|
|
});
|