2023-03-26 19:04:42 +02:00
|
|
|
import { Edit } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-03-26 19:04:42 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.html-wysiwyg-editor.title'),
|
2023-03-26 19:04:42 +02:00
|
|
|
path: '/html-wysiwyg-editor',
|
2024-02-01 14:05:54 +01:00
|
|
|
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,
|
|
|
|
});
|