2023-04-22 00:49:03 +02:00
|
|
|
import { CompareArrowsRound } from '@vicons/material';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-04-22 00:49:03 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.json-diff.title'),
|
2023-04-22 00:49:03 +02:00
|
|
|
path: '/json-diff',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.json-diff.description'),
|
2023-04-22 00:49:03 +02:00
|
|
|
keywords: ['json', 'diff', 'compare', 'difference', 'object', 'data'],
|
|
|
|
component: () => import('./json-diff.vue'),
|
|
|
|
icon: CompareArrowsRound,
|
|
|
|
createdAt: new Date('2023-04-20'),
|
|
|
|
});
|