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