feat(new-tool): ipv4 address converter

This commit is contained in:
Corentin Thomasset 2023-04-08 21:10:00 +02:00 committed by Corentin THOMASSET
parent 8930e139b2
commit 28145e0ffe
5 changed files with 152 additions and 1 deletions

View file

@ -0,0 +1,12 @@
import { Binary } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Ipv4 address converter',
path: '/ipv4-address-converter',
description: 'Convert an ip address into decimal, binary, hexadecimal or event in ipv6',
keywords: ['ipv4', 'address', 'converter', 'decimal', 'hexadecimal', 'binary', 'ipv6'],
component: () => import('./ipv4-address-converter.vue'),
icon: Binary,
createdAt: new Date('2023-04-08'),
});