it-tools/src/tools/json-to-xml/index.ts

14 lines
416 B
TypeScript
Raw Normal View History

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