13 lines
		
	
	
		
			470 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 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,
 | |
| });
 |