mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
12 lines
490 B
TypeScript
12 lines
490 B
TypeScript
import { Server } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.random-port-generator.title'),
|
|
path: '/random-port-generator',
|
|
description: translate('tools.random-port-generator.description'),
|
|
keywords: ['system', 'port', 'lan', 'generator', 'random', 'development', 'computer'],
|
|
component: () => import('./random-port-generator.vue'),
|
|
icon: Server,
|
|
});
|