2023-03-28 23:31:11 +02:00
|
|
|
import { RouterOutlined } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-03-28 23:31:11 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.ipv4-subnet-calculator.title'),
|
2023-03-28 23:31:11 +02:00
|
|
|
path: '/ipv4-subnet-calculator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.ipv4-subnet-calculator.description'),
|
2023-03-28 23:31:11 +02:00
|
|
|
keywords: ['ipv4', 'subnet', 'calculator', 'mask', 'network', 'cidr', 'netmask', 'bitmask', 'broadcast', 'address'],
|
|
|
|
component: () => import('./ipv4-subnet-calculator.vue'),
|
|
|
|
icon: RouterOutlined,
|
|
|
|
});
|