blob: c01e3ec02655e2a9549e1387b397a3d7b5e8ab72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'),
});
|