it-tools/src/tools/html-wysiwyg-editor/index.ts

13 lines
470 B
TypeScript
Raw Normal View History

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