it-tools/src/tools/markdown-to-word/index.ts
2025-06-05 11:26:24 +08:00

13 lines
476 B
TypeScript

import { Markdown } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.markdown-to-word.title'),
path: '/markdown-to-word',
description: translate('tools.markdown-to-word.description'),
keywords: ['markdown', 'word', 'docx', 'converter'],
component: () => import('./markdown-to-word.vue'),
icon: Markdown,
createdAt: new Date('2024-08-25'),
});