mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-26 09:46:15 -04:00
12 lines
542 B
TypeScript
12 lines
542 B
TypeScript
import { RouterOutlined } from '@vicons/material';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.ipv4-subnet-calculator.title'),
|
|
path: '/ipv4-subnet-calculator',
|
|
description: translate('tools.ipv4-subnet-calculator.description'),
|
|
keywords: ['ipv4', 'subnet', 'calculator', 'mask', 'network', 'cidr', 'netmask', 'bitmask', 'broadcast', 'address'],
|
|
component: () => import('./ipv4-subnet-calculator.vue'),
|
|
icon: RouterOutlined,
|
|
});
|