blob: 1f1bfcf3cc34860be5c99f285cbaa214bf3dff8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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,
});
|