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