2023-02-10 22:06:32 +01:00
|
|
|
import { AbcRound } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-02-10 22:06:32 +01:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.slugify-string.title'),
|
2023-02-10 22:06:32 +01:00
|
|
|
path: '/slugify-string',
|
2024-02-01 14:05:54 +01:00
|
|
|
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,
|
|
|
|
});
|