mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
13 lines
518 B
TypeScript
13 lines
518 B
TypeScript
import { defineTool } from '../tool';
|
|
import n7mIcon from './n7m-icon.svg?component';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.numeronym-generator.title'),
|
|
path: '/numeronym-generator',
|
|
description: translate('tools.numeronym-generator.description'),
|
|
keywords: ['numeronym', 'generator', 'abbreviation', 'i18n', 'a11y', 'l10n'],
|
|
component: () => import('./numeronym-generator.vue'),
|
|
icon: n7mIcon,
|
|
createdAt: new Date('2023-11-05'),
|
|
});
|