mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-07 14:57:12 -04:00
13 lines
427 B
TypeScript
13 lines
427 B
TypeScript
import { Braces } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.xml-to-json.title'),
|
|
path: '/xml-to-json',
|
|
description: translate('tools.xml-to-json.description'),
|
|
keywords: ['xml', 'json'],
|
|
component: () => import('./xml-to-json.vue'),
|
|
icon: Braces,
|
|
createdAt: new Date('2024-08-09'),
|
|
});
|