mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-29 19:09:13 -04:00
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
![]() |
import { AbcRound } from '@vicons/material';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Slugify string',
|
||
|
path: '/slugify-string',
|
||
|
description: 'Make a string url, filename and id safe.',
|
||
|
keywords: ['slugify', 'string', 'escape', 'emoji', 'special', 'character', 'space', 'trim'],
|
||
|
component: () => import('./slugify-string.vue'),
|
||
|
icon: AbcRound,
|
||
|
});
|