it-tools/src/tools/slugify-string/index.ts
2024-02-01 14:05:54 +01:00

12 lines
474 B
TypeScript

import { AbcRound } from '@vicons/material';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.slugify-string.title'),
path: '/slugify-string',
description: translate('tools.slugify-string.description'),
keywords: ['slugify', 'string', 'escape', 'emoji', 'special', 'character', 'space', 'trim'],
component: () => import('./slugify-string.vue'),
icon: AbcRound,
});