it-tools/src/tools/slugify-string/index.ts

13 lines
474 B
TypeScript
Raw Normal View History

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