mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 09:46:15 -04:00
feat(new-tool): ipv4 address converter
This commit is contained in:
parent
8930e139b2
commit
28145e0ffe
5 changed files with 152 additions and 1 deletions
12
src/tools/ipv4-address-converter/index.ts
Normal file
12
src/tools/ipv4-address-converter/index.ts
Normal 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'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue