feat: Add tool uuid-converter

This commit is contained in:
aSeyfarth 2023-11-09 17:29:16 +01:00
parent 093ff311fd
commit 94eb67b4ab
12 changed files with 15155 additions and 17 deletions

View file

@ -0,0 +1,13 @@
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'),
});