mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
13 lines
505 B
TypeScript
13 lines
505 B
TypeScript
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'),
|
|
});
|