it-tools/src/tools/safelink-decoder/index.ts
Amery2010 61b5a610ea feat(i18n): i18n Outlook safelink tool
refactor(tools): Only show the output when there is an input value
2024-03-11 18:43:34 +08:00

13 lines
457 B
TypeScript

import { Mailbox } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate as t } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: t('tools.safelink-decoder.title'),
path: '/safelink-decoder',
description: t('tools.safelink-decoder.description'),
keywords: ['outlook', 'safelink', 'decoder'],
component: () => import('./safelink-decoder.vue'),
icon: Mailbox,
createdAt: new Date('2024-03-11'),
});