blob: 3a2ab007794465e8bed871f22fb4990668775955 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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,
});
|