mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
13 lines
439 B
TypeScript
13 lines
439 B
TypeScript
![]() |
import { CompareArrowsRound } from '@vicons/material';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'JSON diff',
|
||
|
path: '/json-diff',
|
||
|
description: 'Compare two JSON objects and get the differences between them.',
|
||
|
keywords: ['json', 'diff', 'compare', 'difference', 'object', 'data'],
|
||
|
component: () => import('./json-diff.vue'),
|
||
|
icon: CompareArrowsRound,
|
||
|
createdAt: new Date('2023-04-20'),
|
||
|
});
|