mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
12 lines
470 B
TypeScript
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,
|
|
});
|