mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-28 02:26:15 -04:00
13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
![]() |
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'),
|
||
|
});
|