mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-27 18:16:15 -04:00
feat(tool): case converter
This commit is contained in:
parent
c1e76695e4
commit
7a7372df19
5 changed files with 384 additions and 5 deletions
12
src/tools/case-converter/index.ts
Normal file
12
src/tools/case-converter/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { LetterCaseToggle } from '@vicons/tabler';
|
||||
import type { ITool } from './../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
name: 'Case converter',
|
||||
path: '/case-converter',
|
||||
description: 'Change the case of a string and chose between different formats',
|
||||
keywords: ['case', 'converter', 'camelCase', 'capitalCase', 'constantCase', 'dotCase', 'headerCase', 'noCase', 'paramCase', 'pascalCase', 'pathCase', 'sentenceCase', 'snakeCase', ],
|
||||
component: () => import('./case-converter.vue'),
|
||||
icon: LetterCaseToggle,
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue