mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-27 18:16:15 -04:00
13 lines
468 B
TypeScript
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'),
|
|
});
|