mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-29 10:59:12 -04:00
12 lines
474 B
TypeScript
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,
|
|
});
|