it-tools/src/tools/json-to-xml/index.ts
2024-10-19 21:08:08 +08:00

13 lines
416 B
TypeScript

import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate as t } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: t('tools.json-to-xml.title'),
path: '/json-to-xml',
description: t('tools.json-to-xml.description'),
keywords: ['json', 'xml'],
component: () => import('./json-to-xml.vue'),
icon: Braces,
createdAt: new Date('2024-08-09'),
});