feat(new-tool): slugify string

This commit is contained in:
Corentin Thomasset
2023-02-10 22:06:32 +01:00
parent 1a3f0a135d
commit 6fe4b5ac60
5 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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,
});