mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
12 lines
454 B
TypeScript
12 lines
454 B
TypeScript
import { Code } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.html-entities.title'),
|
|
path: '/html-entities',
|
|
description: translate('tools.html-entities.description'),
|
|
keywords: ['html', 'entities', 'escape', 'unescape', 'special', 'characters', 'tags'],
|
|
component: () => import('./html-entities.vue'),
|
|
icon: Code,
|
|
});
|