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'), });