mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-08 07:11:03 -04:00
13 lines
462 B
TypeScript
13 lines
462 B
TypeScript
import { Replace } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.uuid-converter.title'),
|
|
path: '/uuid-converter',
|
|
description: translate('tools.uuid-converter.description'),
|
|
keywords: ['uuid', 'converter', 'guid', 'sql'],
|
|
component: () => import('./uuid-converter.vue'),
|
|
icon: Replace,
|
|
createdAt: new Date('2023-11-08'),
|
|
});
|