mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-29 02:49:13 -04:00
13 lines
466 B
TypeScript
13 lines
466 B
TypeScript
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'),
|
|
});
|