it-tools/src/tools/encryption/index.ts
2024-02-01 14:05:54 +01:00

13 lines
463 B
TypeScript

import { Lock } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.encryption.title'),
path: '/encryption',
description: translate('tools.encryption.description'),
keywords: ['cypher', 'encipher', 'text', 'AES', 'TripleDES', 'Rabbit', 'RC4'],
component: () => import('./encryption.vue'),
icon: Lock,
redirectFrom: ['/cypher'],
});