it-tools/src/tools/smart-text-replacer/index.ts
2024-04-07 07:33:53 +05:00

14 lines
491 B
TypeScript

import { Search } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.smart-text-replacer.title'),
path: '/smart-text-replacer',
description: translate('tools.smart-text-replacer.description'),
keywords: ['smart', 'text-replacer', 'search', 'replace'],
component: () => import('./smart-text-replacer.vue'),
icon: Search,
createdAt: new Date('2024-04-03'),
});