14 lines
543 B
TypeScript
14 lines
543 B
TypeScript
import { IconBinary } from '@tabler/icons-vue';
|
|
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: IconBinary,
|
|
createdAt: new Date('2023-04-08'),
|
|
});
|