mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
feat(new-tool): yaml and json converters
This commit is contained in:
committed by
Corentin THOMASSET
parent
05f06f6a07
commit
c0a89131dd
12
src/tools/json-to-yaml-converter/index.ts
Normal file
12
src/tools/json-to-yaml-converter/index.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Braces } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'JSON to YAML converter',
|
||||
path: '/json-to-yaml-converter',
|
||||
description: 'Simply convert JSON to YAML with this live online converter.',
|
||||
keywords: ['yaml', 'to', 'json'],
|
||||
component: () => import('./json-to-yaml.vue'),
|
||||
icon: Braces,
|
||||
createdAt: new Date('2023-04-10'),
|
||||
});
|
||||
Reference in New Issue
Block a user