mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
12 lines
448 B
TypeScript
12 lines
448 B
TypeScript
![]() |
import { Edit } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Html wysiwyg editor',
|
||
|
path: '/html-wysiwyg-editor',
|
||
|
description: 'Online HTML editor with feature-rich WYSIWYG editor, get the source code of the content immediately.',
|
||
|
keywords: ['html', 'wysiwyg', 'editor', 'p', 'ul', 'ol', 'converter', 'live'],
|
||
|
component: () => import('./html-wysiwyg-editor.vue'),
|
||
|
icon: Edit,
|
||
|
});
|