mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-11-05 22:43:15 +00:00
feat(new-tool): diff of two json objects
This commit is contained in:
committed by
Corentin THOMASSET
parent
61ece2387f
commit
362f2fa280
12
src/tools/json-diff/index.ts
Normal file
12
src/tools/json-diff/index.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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'),
|
||||
});
|
||||
Reference in New Issue
Block a user