2023-06-18 12:27:26 +02:00
|
|
|
import { Code } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-06-18 12:27:26 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.xml-formatter.title'),
|
2023-06-18 12:27:26 +02:00
|
|
|
path: '/xml-formatter',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.xml-formatter.description'),
|
2023-06-18 12:27:26 +02:00
|
|
|
keywords: ['xml', 'prettify', 'format'],
|
|
|
|
component: () => import('./xml-formatter.vue'),
|
|
|
|
icon: Code,
|
|
|
|
createdAt: new Date('2023-06-17'),
|
|
|
|
});
|