mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
13 lines
445 B
TypeScript
13 lines
445 B
TypeScript
import { Code } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.xml-formatter.title'),
|
|
path: '/xml-formatter',
|
|
description: translate('tools.xml-formatter.description'),
|
|
keywords: ['xml', 'prettify', 'format'],
|
|
component: () => import('./xml-formatter.vue'),
|
|
icon: Code,
|
|
createdAt: new Date('2023-06-17'),
|
|
});
|