blob: 7aa096da780fdd943ee305a46c70d8c478c4e25a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'),
});
|