blob: a4c0319c0daa93e7d492174db16e1d2c9eb4112f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { CompareArrowsRound } from '@vicons/material';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.json-diff.title'),
path: '/json-diff',
description: translate('tools.json-diff.description'),
keywords: ['json', 'diff', 'compare', 'difference', 'object', 'data'],
component: () => import('./json-diff.vue'),
icon: CompareArrowsRound,
createdAt: new Date('2023-04-20'),
});
|