it-tools/src/tools/json-to-yaml-converter/index.ts
2024-02-01 14:05:54 +01:00

13 lines
468 B
TypeScript

import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.json-to-yaml-converter.title'),
path: '/json-to-yaml-converter',
description: translate('tools.json-to-yaml-converter.description'),
keywords: ['yaml', 'to', 'json'],
component: () => import('./json-to-yaml.vue'),
icon: Braces,
createdAt: new Date('2023-04-10'),
});