feat: Synchronous Update

This commit is contained in:
Amery2010 2024-10-19 21:08:08 +08:00
commit e7ccf65fe5
95 changed files with 8870 additions and 5322 deletions

View file

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