mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
13 lines
562 B
TypeScript
13 lines
562 B
TypeScript
import { SortDescendingNumbers } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.ulid-generator.title'),
|
|
path: '/ulid-generator',
|
|
description: translate('tools.ulid-generator.description'),
|
|
keywords: ['ulid', 'generator', 'random', 'id', 'alphanumeric', 'identity', 'token', 'string', 'identifier', 'unique'],
|
|
component: () => import('./ulid-generator.vue'),
|
|
icon: SortDescendingNumbers,
|
|
createdAt: new Date('2023-09-11'),
|
|
});
|