mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 08:46:15 -04:00
12 lines
529 B
TypeScript
12 lines
529 B
TypeScript
import { AlignJustified } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.lorem-ipsum-generator.title'),
|
|
path: '/lorem-ipsum-generator',
|
|
description: translate('tools.lorem-ipsum-generator.description'),
|
|
keywords: ['lorem', 'ipsum', 'dolor', 'sit', 'amet', 'placeholder', 'text', 'filler', 'random', 'generator'],
|
|
component: () => import('./lorem-ipsum-generator.vue'),
|
|
icon: AlignJustified,
|
|
});
|