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

12 lines
470 B
TypeScript

import { Edit } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.html-wysiwyg-editor.title'),
path: '/html-wysiwyg-editor',
description: translate('tools.html-wysiwyg-editor.description'),
keywords: ['html', 'wysiwyg', 'editor', 'p', 'ul', 'ol', 'converter', 'live'],
component: () => import('./html-wysiwyg-editor.vue'),
icon: Edit,
});