blob: 3106bcec809da212b1c248527a7dca6d3f598b7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Devices } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.mac-address-generator.title'),
path: '/mac-address-generator',
description: translate('tools.mac-address-generator.description'),
keywords: ['mac', 'address', 'generator', 'random', 'prefix'],
component: () => import('./mac-address-generator.vue'),
icon: Devices,
createdAt: new Date('2023-11-31'),
});
|