blob: de124ee65c4fb6d110028b9b60cf79b3866f6458 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { FileDiff } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.text-diff.title'),
path: '/text-diff',
description: translate('tools.text-diff.description'),
keywords: ['text', 'diff', 'compare', 'string', 'text diff', 'code'],
component: () => import('./text-diff.vue'),
icon: FileDiff,
createdAt: new Date('2023-08-16'),
});
|