mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
more tools
This commit is contained in:
parent
5ceb46855d
commit
a81514d383
4 changed files with 20 additions and 4 deletions
|
@ -1,10 +1,11 @@
|
|||
import { Braces } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
import { translate } from '@/plugins/i18n.plugin';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'JSON to XML',
|
||||
name: translate('tools.json-to-xml.title'),
|
||||
path: '/json-to-xml',
|
||||
description: 'Convert JSON to XML',
|
||||
description: translate('tools.json-to-xml.description'),
|
||||
keywords: ['json', 'xml'],
|
||||
component: () => import('./json-to-xml.vue'),
|
||||
icon: Braces,
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
import { Braces } from '@vicons/tabler';
|
||||
import { defineTool } from '../tool';
|
||||
import { translate } from '@/plugins/i18n.plugin';
|
||||
|
||||
export const tool = defineTool({
|
||||
name: 'XML to JSON',
|
||||
name: translate('tools.xml-to-json.title'),
|
||||
path: '/xml-to-json',
|
||||
description: 'Convert XML to JSON',
|
||||
description: translate('tools.xml-to-json.description'),
|
||||
keywords: ['xml', 'json'],
|
||||
component: () => import('./xml-to-json.vue'),
|
||||
icon: Braces,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue